Uses of Interface
it.unimi.dsi.fastutil.ints.Int2ByteSortedMap

Packages that use Int2ByteSortedMap
it.unimi.dsi.fastutil.ints Provides type-specific classes for integer elements or keys. 
 

Uses of Int2ByteSortedMap in it.unimi.dsi.fastutil.ints
 

Classes in it.unimi.dsi.fastutil.ints that implement Int2ByteSortedMap
 class AbstractInt2ByteSortedMap
          An abstract class providing basic methods for sorted maps implementing a type-specific interface.
 class Int2ByteAVLTreeMap
          A type-specific AVL tree map with a fast, small-footprint implementation.
 class Int2ByteLinkedOpenHashMap
          A type-specific linked hash map with with a fast, small-footprint implementation.
 class Int2ByteRBTreeMap
          A type-specific red-black tree map with a fast, small-footprint implementation.
static class Int2ByteSortedMaps.EmptySortedMap
          An immutable class representing an empty type-specific sorted map.
static class Int2ByteSortedMaps.Singleton
          An immutable class representing a type-specific singleton sorted map.
static class Int2ByteSortedMaps.SynchronizedSortedMap
          A synchronized wrapper class for sorted maps.
static class Int2ByteSortedMaps.UnmodifiableSortedMap
          An unmodifiable wrapper class for sorted maps.
 

Fields in it.unimi.dsi.fastutil.ints declared as Int2ByteSortedMap
protected  Int2ByteSortedMap Int2ByteSortedMaps.SynchronizedSortedMap.sortedMap
           
protected  Int2ByteSortedMap Int2ByteSortedMaps.UnmodifiableSortedMap.sortedMap
           
 

Methods in it.unimi.dsi.fastutil.ints that return Int2ByteSortedMap
 Int2ByteSortedMap Int2ByteSortedMap.headMap(int toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Int2ByteSortedMap Int2ByteLinkedOpenHashMap.headMap(int to)
           
 Int2ByteSortedMap Int2ByteAVLTreeMap.headMap(int to)
           
 Int2ByteSortedMap Int2ByteRBTreeMap.headMap(int to)
           
 Int2ByteSortedMap Int2ByteSortedMaps.EmptySortedMap.headMap(int to)
           
 Int2ByteSortedMap Int2ByteSortedMaps.Singleton.headMap(int to)
           
 Int2ByteSortedMap Int2ByteSortedMaps.SynchronizedSortedMap.headMap(int to)
           
 Int2ByteSortedMap Int2ByteSortedMaps.UnmodifiableSortedMap.headMap(int to)
           
 Int2ByteSortedMap Int2ByteSortedMap.headMap(Integer toKey)
          Returns a view of the portion of this sorted map whose keys are strictly less than toKey.
 Int2ByteSortedMap AbstractInt2ByteSortedMap.headMap(Integer to)
          Delegates to the corresponding type-specific method.
 Int2ByteSortedMap Int2ByteSortedMaps.EmptySortedMap.headMap(Integer oto)
           
 Int2ByteSortedMap Int2ByteSortedMaps.Singleton.headMap(Integer oto)
           
 Int2ByteSortedMap Int2ByteSortedMaps.SynchronizedSortedMap.headMap(Integer to)
           
 Int2ByteSortedMap Int2ByteSortedMaps.UnmodifiableSortedMap.headMap(Integer to)
           
static Int2ByteSortedMap Int2ByteSortedMaps.singleton(int key, byte value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Int2ByteSortedMap Int2ByteSortedMaps.singleton(int key, byte value, IntComparator comparator)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Int2ByteSortedMap Int2ByteSortedMaps.singleton(Integer key, Byte value)
          Returns a type-specific immutable sorted map containing only the specified pair.
static Int2ByteSortedMap Int2ByteSortedMaps.singleton(Integer key, Byte value, IntComparator comparator)
          RETURNS a type-specific immutable sorted map containing only the specified pair.
 Int2ByteSortedMap Int2ByteSortedMap.subMap(Integer fromKey, Integer toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Int2ByteSortedMap AbstractInt2ByteSortedMap.subMap(Integer from, Integer to)
          Delegates to the corresponding type-specific method.
 Int2ByteSortedMap Int2ByteSortedMaps.EmptySortedMap.subMap(Integer ofrom, Integer oto)
           
 Int2ByteSortedMap Int2ByteSortedMaps.Singleton.subMap(Integer ofrom, Integer oto)
           
 Int2ByteSortedMap Int2ByteSortedMaps.SynchronizedSortedMap.subMap(Integer from, Integer to)
           
 Int2ByteSortedMap Int2ByteSortedMaps.UnmodifiableSortedMap.subMap(Integer from, Integer to)
           
 Int2ByteSortedMap Int2ByteSortedMap.subMap(int fromKey, int toKey)
          Returns a view of the portion of this sorted map whose keys range from fromKey, inclusive, to toKey, exclusive.
 Int2ByteSortedMap Int2ByteLinkedOpenHashMap.subMap(int from, int to)
           
 Int2ByteSortedMap Int2ByteAVLTreeMap.subMap(int from, int to)
           
 Int2ByteSortedMap Int2ByteRBTreeMap.subMap(int from, int to)
           
 Int2ByteSortedMap Int2ByteSortedMaps.EmptySortedMap.subMap(int from, int to)
           
 Int2ByteSortedMap Int2ByteSortedMaps.Singleton.subMap(int from, int to)
           
 Int2ByteSortedMap Int2ByteSortedMaps.SynchronizedSortedMap.subMap(int from, int to)
           
 Int2ByteSortedMap Int2ByteSortedMaps.UnmodifiableSortedMap.subMap(int from, int to)
           
static Int2ByteSortedMap Int2ByteSortedMaps.synchronize(Int2ByteSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Int2ByteSortedMap Int2ByteSortedMaps.synchronize(Int2ByteSortedMap m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
 Int2ByteSortedMap Int2ByteSortedMap.tailMap(int fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Int2ByteSortedMap Int2ByteLinkedOpenHashMap.tailMap(int from)
           
 Int2ByteSortedMap Int2ByteAVLTreeMap.tailMap(int from)
           
 Int2ByteSortedMap Int2ByteRBTreeMap.tailMap(int from)
           
 Int2ByteSortedMap Int2ByteSortedMaps.EmptySortedMap.tailMap(int from)
           
 Int2ByteSortedMap Int2ByteSortedMaps.Singleton.tailMap(int from)
           
 Int2ByteSortedMap Int2ByteSortedMaps.SynchronizedSortedMap.tailMap(int from)
           
 Int2ByteSortedMap Int2ByteSortedMaps.UnmodifiableSortedMap.tailMap(int from)
           
 Int2ByteSortedMap Int2ByteSortedMap.tailMap(Integer fromKey)
          Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
 Int2ByteSortedMap AbstractInt2ByteSortedMap.tailMap(Integer from)
          Delegates to the corresponding type-specific method.
 Int2ByteSortedMap Int2ByteSortedMaps.EmptySortedMap.tailMap(Integer ofrom)
           
 Int2ByteSortedMap Int2ByteSortedMaps.Singleton.tailMap(Integer ofrom)
           
 Int2ByteSortedMap Int2ByteSortedMaps.SynchronizedSortedMap.tailMap(Integer from)
           
 Int2ByteSortedMap Int2ByteSortedMaps.UnmodifiableSortedMap.tailMap(Integer from)
           
static Int2ByteSortedMap Int2ByteSortedMaps.unmodifiable(Int2ByteSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

Methods in it.unimi.dsi.fastutil.ints with parameters of type Int2ByteSortedMap
static Int2ByteSortedMap Int2ByteSortedMaps.synchronize(Int2ByteSortedMap m)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map.
static Int2ByteSortedMap Int2ByteSortedMaps.synchronize(Int2ByteSortedMap m, Object sync)
          Returns a synchronized type-specific sorted map backed by the given type-specific sorted map, using an assigned object to synchronize.
static Int2ByteSortedMap Int2ByteSortedMaps.unmodifiable(Int2ByteSortedMap m)
          Returns an unmodifiable type-specific sorted map backed by the given type-specific sorted map.
 

Constructors in it.unimi.dsi.fastutil.ints with parameters of type Int2ByteSortedMap
Int2ByteAVLTreeMap(Int2ByteSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Int2ByteRBTreeMap(Int2ByteSortedMap m)
          Creates a new tree map copying a given sorted map (and its Comparator).
Int2ByteSortedMaps.SynchronizedSortedMap(Int2ByteSortedMap m)
           
Int2ByteSortedMaps.SynchronizedSortedMap(Int2ByteSortedMap m, Object sync)
           
Int2ByteSortedMaps.UnmodifiableSortedMap(Int2ByteSortedMap m)
           
 



Copyright © 2011. All Rights Reserved.