Uses of Interface
it.unimi.dsi.fastutil.bytes.ByteCollection

Packages that use ByteCollection
it.unimi.dsi.fastutil.bytes Provides type-specific classes for byte elements or keys. 
it.unimi.dsi.fastutil.chars Provides type-specific classes for character elements or keys. 
it.unimi.dsi.fastutil.doubles Provides type-specific classes for double elements or keys. 
it.unimi.dsi.fastutil.floats Provides type-specific classes for float elements or keys. 
it.unimi.dsi.fastutil.ints Provides type-specific classes for integer elements or keys. 
it.unimi.dsi.fastutil.longs Provides type-specific classes for long elements or keys. 
it.unimi.dsi.fastutil.objects Provides type-specific classes for object elements or keys. 
it.unimi.dsi.fastutil.shorts Provides type-specific classes for short elements or keys. 
 

Uses of ByteCollection in it.unimi.dsi.fastutil.bytes
 

Subinterfaces of ByteCollection in it.unimi.dsi.fastutil.bytes
 interface ByteBigList
          A type-specific BigList; provides some additional methods that use polymorphism to avoid (un)boxing.
 interface ByteList
          A type-specific List; provides some additional methods that use polymorphism to avoid (un)boxing.
 interface ByteSet
          A type-specific Set; provides some additional methods that use polymorphism to avoid (un)boxing.
 interface ByteSortedSet
          A type-specific SortedSet; provides some additional methods that use polymorphism to avoid (un)boxing.
 

Classes in it.unimi.dsi.fastutil.bytes that implement ByteCollection
protected  class AbstractByte2BooleanSortedMap.KeySet
          A wrapper exhibiting the keys of a map.
protected  class AbstractByte2ByteSortedMap.KeySet
          A wrapper exhibiting the keys of a map.
protected  class AbstractByte2ByteSortedMap.ValuesCollection
          A wrapper exhibiting the values of a map.
protected  class AbstractByte2CharSortedMap.KeySet
          A wrapper exhibiting the keys of a map.
protected  class AbstractByte2DoubleSortedMap.KeySet
          A wrapper exhibiting the keys of a map.
protected  class AbstractByte2FloatSortedMap.KeySet
          A wrapper exhibiting the keys of a map.
protected  class AbstractByte2IntSortedMap.KeySet
          A wrapper exhibiting the keys of a map.
protected  class AbstractByte2LongSortedMap.KeySet
          A wrapper exhibiting the keys of a map.
protected  class AbstractByte2ObjectSortedMap.KeySet
          A wrapper exhibiting the keys of a map.
protected  class AbstractByte2ReferenceSortedMap.KeySet
          A wrapper exhibiting the keys of a map.
protected  class AbstractByte2ShortSortedMap.KeySet
          A wrapper exhibiting the keys of a map.
 class AbstractByteBigList
          An abstract class providing basic methods for big lists implementing a type-specific big list interface.
static class AbstractByteBigList.ByteSubList
           
 class AbstractByteCollection
          An abstract class providing basic methods for collections implementing a type-specific interface.
 class AbstractByteList
          An abstract class providing basic methods for lists implementing a type-specific list interface.
static class AbstractByteList.ByteSubList
           
 class AbstractByteSet
          An abstract class providing basic methods for sets implementing a type-specific interface.
 class AbstractByteSortedSet
          An abstract class providing basic methods for sorted sets implementing a type-specific interface.
 class ByteArrayList
          A type-specific array-based list; provides some additional methods that use polymorphism to avoid (un)boxing.
 class ByteArraySet
          A simple, brute-force implementation of a set based on a backing array.
 class ByteAVLTreeSet
          A type-specific AVL tree set with a fast, small-footprint implementation.
 class ByteBigArrayBigList
          A type-specific big list based on a big array; provides some additional methods that use polymorphism to avoid (un)boxing.
static class ByteBigLists.EmptyBigList
          An immutable class representing an empty type-specific big list.
static class ByteBigLists.ListBigList
          A class exposing a list as a big list.
static class ByteBigLists.Singleton
          An immutable class representing a type-specific singleton big list.
static class ByteBigLists.SynchronizedBigList
          A synchronized wrapper class for big lists.
static class ByteBigLists.UnmodifiableBigList
          An unmodifiable wrapper class for big lists.
static class ByteCollections.EmptyCollection
          An immutable class representing an empty type-specific collection.
static class ByteCollections.IterableCollection
          A collection wrapper class for iterables.
static class ByteCollections.SynchronizedCollection
          A synchronized wrapper class for collections.
static class ByteCollections.UnmodifiableCollection
          An unmodifiable wrapper class for collections.
 class ByteLinkedOpenCustomHashSet
          A type-specific linked hash set with with a fast, small-footprint implementation.
 class ByteLinkedOpenHashSet
          A type-specific linked hash set with with a fast, small-footprint implementation.
static class ByteLists.EmptyList
          An immutable class representing an empty type-specific list.
static class ByteLists.Singleton
          An immutable class representing a type-specific singleton list.
static class ByteLists.SynchronizedList
          A synchronized wrapper class for lists.
static class ByteLists.UnmodifiableList
          An unmodifiable wrapper class for lists.
 class ByteOpenCustomHashSet
          A type-specific hash set with a fast, small-footprint implementation whose hashing strategy is specified at creation time.
 class ByteOpenHashSet
          A type-specific hash set with with a fast, small-footprint implementation.
 class ByteRBTreeSet
          A type-specific red-black tree set with a fast, small-footprint implementation.
static class ByteSets.EmptySet
          An immutable class representing the empty set and implementing a type-specific set interface.
static class ByteSets.Singleton
          An immutable class representing a type-specific singleton set.
static class ByteSets.SynchronizedSet
          A synchronized wrapper class for sets.
static class ByteSets.UnmodifiableSet
          An unmodifiable wrapper class for sets.
static class ByteSortedSets.EmptySet
          An immutable class representing the empty sorted set and implementing a type-specific set interface.
static class ByteSortedSets.Singleton
          A class representing a singleton sorted set.
static class ByteSortedSets.SynchronizedSortedSet
          A synchronized wrapper class for sorted sets.
static class ByteSortedSets.UnmodifiableSortedSet
          An unmodifiable wrapper class for sorted sets.
 

Fields in it.unimi.dsi.fastutil.bytes declared as ByteCollection
protected  ByteCollection ByteCollections.SynchronizedCollection.collection
           
protected  ByteCollection ByteCollections.UnmodifiableCollection.collection
           
protected  ByteCollection Byte2ByteMaps.Singleton.values
           
protected  ByteCollection Byte2ByteMaps.SynchronizedMap.values
           
protected  ByteCollection Byte2ByteMaps.UnmodifiableMap.values
           
protected  ByteCollection Byte2ByteOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Byte2ByteLinkedOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Byte2ByteRBTreeMap.values
          Cached collection of values.
protected  ByteCollection Byte2ByteAVLTreeMap.values
          Cached collection of values.
 

Methods in it.unimi.dsi.fastutil.bytes that return ByteCollection
static ByteCollection ByteCollections.asCollection(ByteIterable iterable)
          Returns an unmodifiable collection backed by the specified iterable.
static ByteCollection ByteCollections.synchronize(ByteCollection c)
          Returns a synchronized collection backed by the specified collection.
static ByteCollection ByteCollections.synchronize(ByteCollection c, Object sync)
          Returns a synchronized collection backed by the specified collection, using an assigned object to synchronize.
static ByteCollection ByteCollections.unmodifiable(ByteCollection c)
          Returns an unmodifiable collection backed by the specified collection.
 ByteCollection Byte2ByteArrayMap.values()
           
 ByteCollection Byte2ByteMaps.EmptyMap.values()
           
 ByteCollection Byte2ByteMaps.Singleton.values()
           
 ByteCollection Byte2ByteMaps.SynchronizedMap.values()
           
 ByteCollection Byte2ByteMaps.UnmodifiableMap.values()
           
 ByteCollection Byte2ByteMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection Byte2ByteOpenHashMap.values()
           
 ByteCollection AbstractByte2ByteSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Byte2ByteLinkedOpenHashMap.values()
           
 ByteCollection AbstractByte2ByteMap.values()
          Returns a type-specific-set view of the values of this map.
 ByteCollection Byte2ByteSortedMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection Byte2ByteRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Byte2ByteAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 

Methods in it.unimi.dsi.fastutil.bytes with parameters of type ByteCollection
 boolean ByteBigLists.EmptyBigList.addAll(ByteCollection c)
           
 boolean ByteBigLists.Singleton.addAll(ByteCollection c)
           
 boolean ByteBigLists.ListBigList.addAll(ByteCollection c)
           
 boolean AbstractByteCollection.addAll(ByteCollection c)
          Adds all elements of the given type-specific collection to this collection.
 boolean AbstractByteList.addAll(ByteCollection c)
           
 boolean ByteSets.Singleton.addAll(ByteCollection c)
           
 boolean ByteLists.EmptyList.addAll(ByteCollection c)
           
 boolean ByteLists.Singleton.addAll(ByteCollection c)
           
 boolean ByteCollection.addAll(ByteCollection c)
           
 boolean AbstractByteBigList.addAll(ByteCollection c)
           
 boolean ByteCollections.EmptyCollection.addAll(ByteCollection c)
           
 boolean ByteCollections.SynchronizedCollection.addAll(ByteCollection c)
           
 boolean ByteCollections.UnmodifiableCollection.addAll(ByteCollection c)
           
 boolean AbstractByteList.addAll(int index, ByteCollection c)
          Delegates to a more generic method.
 boolean AbstractByteList.ByteSubList.addAll(int index, ByteCollection c)
           
 boolean ByteList.addAll(int index, ByteCollection c)
           
 boolean ByteLists.EmptyList.addAll(int i, ByteCollection c)
           
 boolean ByteLists.Singleton.addAll(int i, ByteCollection c)
           
 boolean ByteLists.SynchronizedList.addAll(int index, ByteCollection c)
           
 boolean ByteLists.UnmodifiableList.addAll(int index, ByteCollection c)
           
 boolean ByteArrayList.addAll(int index, ByteCollection c)
           
 boolean ByteBigLists.EmptyBigList.addAll(long i, ByteCollection c)
           
 boolean ByteBigLists.Singleton.addAll(long i, ByteCollection c)
           
 boolean ByteBigLists.SynchronizedBigList.addAll(long index, ByteCollection c)
           
 boolean ByteBigLists.UnmodifiableBigList.addAll(long index, ByteCollection c)
           
 boolean ByteBigLists.ListBigList.addAll(long index, ByteCollection c)
           
 boolean ByteBigList.addAll(long index, ByteCollection c)
           
 boolean AbstractByteBigList.addAll(long index, ByteCollection c)
          Delegates to a more generic method.
 boolean AbstractByteBigList.ByteSubList.addAll(long index, ByteCollection c)
           
 boolean ByteBigLists.ListBigList.containsAll(ByteCollection c)
           
 boolean AbstractByteCollection.containsAll(ByteCollection c)
          Checks whether this collection contains all elements from the given type-specific collection.
 boolean ByteCollection.containsAll(ByteCollection c)
           
 boolean ByteCollections.EmptyCollection.containsAll(ByteCollection c)
           
 boolean ByteCollections.SynchronizedCollection.containsAll(ByteCollection c)
           
 boolean ByteCollections.UnmodifiableCollection.containsAll(ByteCollection c)
           
static int ByteIterators.pour(ByteIterator i, ByteCollection s)
          Pours an iterator into a type-specific collection.
static int ByteIterators.pour(ByteIterator i, ByteCollection s, int max)
          Pours an iterator into a type-specific collection, with a limit on the number of elements.
 boolean ByteBigLists.ListBigList.removeAll(ByteCollection c)
           
 boolean AbstractByteCollection.removeAll(ByteCollection c)
          Remove from this collection all elements in the given type-specific collection.
 boolean ByteSets.Singleton.removeAll(ByteCollection c)
           
 boolean ByteCollection.removeAll(ByteCollection c)
           
 boolean ByteCollections.EmptyCollection.removeAll(ByteCollection c)
           
 boolean ByteCollections.SynchronizedCollection.removeAll(ByteCollection c)
           
 boolean ByteCollections.UnmodifiableCollection.removeAll(ByteCollection c)
           
 boolean ByteBigLists.ListBigList.retainAll(ByteCollection c)
           
 boolean AbstractByteCollection.retainAll(ByteCollection c)
          Retains in this collection only elements from the given type-specific collection.
 boolean ByteSets.Singleton.retainAll(ByteCollection c)
           
 boolean ByteCollection.retainAll(ByteCollection c)
           
 boolean ByteCollections.EmptyCollection.retainAll(ByteCollection c)
           
 boolean ByteCollections.SynchronizedCollection.retainAll(ByteCollection c)
           
 boolean ByteCollections.UnmodifiableCollection.retainAll(ByteCollection c)
           
static ByteCollection ByteCollections.synchronize(ByteCollection c)
          Returns a synchronized collection backed by the specified collection.
static ByteCollection ByteCollections.synchronize(ByteCollection c, Object sync)
          Returns a synchronized collection backed by the specified collection, using an assigned object to synchronize.
static ByteCollection ByteCollections.unmodifiable(ByteCollection c)
          Returns an unmodifiable collection backed by the specified collection.
static long ByteIterators.unwrap(ByteIterator i, ByteCollection c)
          Unwraps an iterator into a type-specific collection.
static int ByteIterators.unwrap(ByteIterator i, ByteCollection c, int max)
          Unwraps an iterator into a type-specific collection, with a limit on the number of elements.
 

Constructors in it.unimi.dsi.fastutil.bytes with parameters of type ByteCollection
ByteArrayList(ByteCollection c)
          Creates a new array list and fills it with a given type-specific collection.
ByteArraySet(ByteCollection c)
          Creates a new array set copying the contents of a given collection.
ByteAVLTreeSet(ByteCollection c)
          Creates a new tree set copying a given type-specific collection.
ByteBigArrayBigList(ByteCollection c)
          Creates a new big-array big list and fills it with a given type-specific collection.
ByteCollections.SynchronizedCollection(ByteCollection c)
           
ByteCollections.SynchronizedCollection(ByteCollection c, Object sync)
           
ByteCollections.UnmodifiableCollection(ByteCollection c)
           
ByteLinkedOpenCustomHashSet(ByteCollection c, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
ByteLinkedOpenCustomHashSet(ByteCollection c, float f, ByteHash.Strategy strategy)
          Creates a new hash set copying a given type-specific collection.
ByteLinkedOpenHashSet(ByteCollection c)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
ByteLinkedOpenHashSet(ByteCollection c, float f)
          Creates a new hash set copying a given type-specific collection.
ByteOpenCustomHashSet(ByteCollection c, ByteHash.Strategy strategy)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
ByteOpenCustomHashSet(ByteCollection c, float f, ByteHash.Strategy strategy)
          Creates a new hash set copying a given type-specific collection.
ByteOpenHashSet(ByteCollection c)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
ByteOpenHashSet(ByteCollection c, float f)
          Creates a new hash set copying a given type-specific collection.
ByteRBTreeSet(ByteCollection c)
          Creates a new tree set copying a given type-specific collection.
 

Uses of ByteCollection in it.unimi.dsi.fastutil.chars
 

Classes in it.unimi.dsi.fastutil.chars that implement ByteCollection
protected  class AbstractChar2ByteSortedMap.ValuesCollection
          A wrapper exhibiting the values of a map.
 

Fields in it.unimi.dsi.fastutil.chars declared as ByteCollection
protected  ByteCollection Char2ByteAVLTreeMap.values
          Cached collection of values.
protected  ByteCollection Char2ByteMaps.Singleton.values
           
protected  ByteCollection Char2ByteMaps.SynchronizedMap.values
           
protected  ByteCollection Char2ByteMaps.UnmodifiableMap.values
           
protected  ByteCollection Char2ByteRBTreeMap.values
          Cached collection of values.
protected  ByteCollection Char2ByteOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Char2ByteLinkedOpenHashMap.values
          Cached collection of values.
 

Methods in it.unimi.dsi.fastutil.chars that return ByteCollection
 ByteCollection Char2ByteAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Char2ByteMaps.EmptyMap.values()
           
 ByteCollection Char2ByteMaps.Singleton.values()
           
 ByteCollection Char2ByteMaps.SynchronizedMap.values()
           
 ByteCollection Char2ByteMaps.UnmodifiableMap.values()
           
 ByteCollection Char2ByteRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Char2ByteOpenHashMap.values()
           
 ByteCollection Char2ByteLinkedOpenHashMap.values()
           
 ByteCollection Char2ByteArrayMap.values()
           
 ByteCollection AbstractChar2ByteMap.values()
          Returns a type-specific-set view of the values of this map.
 ByteCollection Char2ByteSortedMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection Char2ByteMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection AbstractChar2ByteSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 

Uses of ByteCollection in it.unimi.dsi.fastutil.doubles
 

Classes in it.unimi.dsi.fastutil.doubles that implement ByteCollection
protected  class AbstractDouble2ByteSortedMap.ValuesCollection
          A wrapper exhibiting the values of a map.
 

Fields in it.unimi.dsi.fastutil.doubles declared as ByteCollection
protected  ByteCollection Double2ByteRBTreeMap.values
          Cached collection of values.
protected  ByteCollection Double2ByteLinkedOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Double2ByteMaps.Singleton.values
           
protected  ByteCollection Double2ByteMaps.SynchronizedMap.values
           
protected  ByteCollection Double2ByteMaps.UnmodifiableMap.values
           
protected  ByteCollection Double2ByteAVLTreeMap.values
          Cached collection of values.
protected  ByteCollection Double2ByteOpenHashMap.values
          Cached collection of values.
 

Methods in it.unimi.dsi.fastutil.doubles that return ByteCollection
 ByteCollection Double2ByteMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection Double2ByteArrayMap.values()
           
 ByteCollection Double2ByteRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection AbstractDouble2ByteSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Double2ByteLinkedOpenHashMap.values()
           
 ByteCollection Double2ByteSortedMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection Double2ByteMaps.EmptyMap.values()
           
 ByteCollection Double2ByteMaps.Singleton.values()
           
 ByteCollection Double2ByteMaps.SynchronizedMap.values()
           
 ByteCollection Double2ByteMaps.UnmodifiableMap.values()
           
 ByteCollection Double2ByteAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Double2ByteOpenHashMap.values()
           
 ByteCollection AbstractDouble2ByteMap.values()
          Returns a type-specific-set view of the values of this map.
 

Uses of ByteCollection in it.unimi.dsi.fastutil.floats
 

Classes in it.unimi.dsi.fastutil.floats that implement ByteCollection
protected  class AbstractFloat2ByteSortedMap.ValuesCollection
          A wrapper exhibiting the values of a map.
 

Fields in it.unimi.dsi.fastutil.floats declared as ByteCollection
protected  ByteCollection Float2ByteOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Float2ByteRBTreeMap.values
          Cached collection of values.
protected  ByteCollection Float2ByteLinkedOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Float2ByteAVLTreeMap.values
          Cached collection of values.
protected  ByteCollection Float2ByteMaps.Singleton.values
           
protected  ByteCollection Float2ByteMaps.SynchronizedMap.values
           
protected  ByteCollection Float2ByteMaps.UnmodifiableMap.values
           
 

Methods in it.unimi.dsi.fastutil.floats that return ByteCollection
 ByteCollection Float2ByteSortedMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection Float2ByteOpenHashMap.values()
           
 ByteCollection Float2ByteMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection AbstractFloat2ByteMap.values()
          Returns a type-specific-set view of the values of this map.
 ByteCollection Float2ByteRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Float2ByteArrayMap.values()
           
 ByteCollection Float2ByteLinkedOpenHashMap.values()
           
 ByteCollection Float2ByteAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection AbstractFloat2ByteSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Float2ByteMaps.EmptyMap.values()
           
 ByteCollection Float2ByteMaps.Singleton.values()
           
 ByteCollection Float2ByteMaps.SynchronizedMap.values()
           
 ByteCollection Float2ByteMaps.UnmodifiableMap.values()
           
 

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

Classes in it.unimi.dsi.fastutil.ints that implement ByteCollection
protected  class AbstractInt2ByteSortedMap.ValuesCollection
          A wrapper exhibiting the values of a map.
 

Fields in it.unimi.dsi.fastutil.ints declared as ByteCollection
protected  ByteCollection Int2ByteMaps.Singleton.values
           
protected  ByteCollection Int2ByteMaps.SynchronizedMap.values
           
protected  ByteCollection Int2ByteMaps.UnmodifiableMap.values
           
protected  ByteCollection Int2ByteLinkedOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Int2ByteAVLTreeMap.values
          Cached collection of values.
protected  ByteCollection Int2ByteOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Int2ByteRBTreeMap.values
          Cached collection of values.
 

Methods in it.unimi.dsi.fastutil.ints that return ByteCollection
 ByteCollection Int2ByteSortedMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection AbstractInt2ByteSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Int2ByteMaps.EmptyMap.values()
           
 ByteCollection Int2ByteMaps.Singleton.values()
           
 ByteCollection Int2ByteMaps.SynchronizedMap.values()
           
 ByteCollection Int2ByteMaps.UnmodifiableMap.values()
           
 ByteCollection Int2ByteArrayMap.values()
           
 ByteCollection Int2ByteMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection Int2ByteLinkedOpenHashMap.values()
           
 ByteCollection Int2ByteAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Int2ByteOpenHashMap.values()
           
 ByteCollection Int2ByteRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection AbstractInt2ByteMap.values()
          Returns a type-specific-set view of the values of this map.
 

Uses of ByteCollection in it.unimi.dsi.fastutil.longs
 

Classes in it.unimi.dsi.fastutil.longs that implement ByteCollection
protected  class AbstractLong2ByteSortedMap.ValuesCollection
          A wrapper exhibiting the values of a map.
 

Fields in it.unimi.dsi.fastutil.longs declared as ByteCollection
protected  ByteCollection Long2ByteAVLTreeMap.values
          Cached collection of values.
protected  ByteCollection Long2ByteLinkedOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Long2ByteRBTreeMap.values
          Cached collection of values.
protected  ByteCollection Long2ByteMaps.Singleton.values
           
protected  ByteCollection Long2ByteMaps.SynchronizedMap.values
           
protected  ByteCollection Long2ByteMaps.UnmodifiableMap.values
           
protected  ByteCollection Long2ByteOpenHashMap.values
          Cached collection of values.
 

Methods in it.unimi.dsi.fastutil.longs that return ByteCollection
 ByteCollection Long2ByteAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Long2ByteLinkedOpenHashMap.values()
           
 ByteCollection Long2ByteArrayMap.values()
           
 ByteCollection Long2ByteRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection AbstractLong2ByteMap.values()
          Returns a type-specific-set view of the values of this map.
 ByteCollection AbstractLong2ByteSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Long2ByteMaps.EmptyMap.values()
           
 ByteCollection Long2ByteMaps.Singleton.values()
           
 ByteCollection Long2ByteMaps.SynchronizedMap.values()
           
 ByteCollection Long2ByteMaps.UnmodifiableMap.values()
           
 ByteCollection Long2ByteSortedMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection Long2ByteOpenHashMap.values()
           
 ByteCollection Long2ByteMap.values()
          Returns a set view of the values contained in this map.
 

Uses of ByteCollection in it.unimi.dsi.fastutil.objects
 

Classes in it.unimi.dsi.fastutil.objects that implement ByteCollection
protected  class AbstractObject2ByteSortedMap.ValuesCollection
          A wrapper exhibiting the values of a map.
protected  class AbstractReference2ByteSortedMap.ValuesCollection
          A wrapper exhibiting the values of a map.
 

Fields in it.unimi.dsi.fastutil.objects declared as ByteCollection
protected  ByteCollection Object2ByteRBTreeMap.values
          Cached collection of values.
protected  ByteCollection Object2ByteOpenCustomHashMap.values
          Cached collection of values.
protected  ByteCollection Object2ByteMaps.Singleton.values
           
protected  ByteCollection Object2ByteMaps.SynchronizedMap.values
           
protected  ByteCollection Object2ByteMaps.UnmodifiableMap.values
           
protected  ByteCollection Object2ByteOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Reference2ByteOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Object2ByteLinkedOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Object2ByteLinkedOpenCustomHashMap.values
          Cached collection of values.
protected  ByteCollection Reference2ByteLinkedOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Object2ByteAVLTreeMap.values
          Cached collection of values.
protected  ByteCollection Reference2ByteMaps.Singleton.values
           
protected  ByteCollection Reference2ByteMaps.SynchronizedMap.values
           
protected  ByteCollection Reference2ByteMaps.UnmodifiableMap.values
           
 

Methods in it.unimi.dsi.fastutil.objects that return ByteCollection
 ByteCollection Object2ByteRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Object2ByteOpenCustomHashMap.values()
           
 ByteCollection Object2ByteArrayMap.values()
           
 ByteCollection AbstractObject2ByteMap.values()
          Returns a type-specific-set view of the values of this map.
 ByteCollection Object2ByteMaps.EmptyMap.values()
           
 ByteCollection Object2ByteMaps.Singleton.values()
           
 ByteCollection Object2ByteMaps.SynchronizedMap.values()
           
 ByteCollection Object2ByteMaps.UnmodifiableMap.values()
           
 ByteCollection Reference2ByteArrayMap.values()
           
 ByteCollection Object2ByteOpenHashMap.values()
           
 ByteCollection Reference2ByteOpenHashMap.values()
           
 ByteCollection Object2ByteLinkedOpenHashMap.values()
           
 ByteCollection Reference2ByteMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection AbstractObject2ByteSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Reference2ByteSortedMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection AbstractReference2ByteMap.values()
          Returns a type-specific-set view of the values of this map.
 ByteCollection Object2ByteMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection Object2ByteSortedMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection Object2ByteLinkedOpenCustomHashMap.values()
           
 ByteCollection Reference2ByteLinkedOpenHashMap.values()
           
 ByteCollection Object2ByteAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Reference2ByteMaps.EmptyMap.values()
           
 ByteCollection Reference2ByteMaps.Singleton.values()
           
 ByteCollection Reference2ByteMaps.SynchronizedMap.values()
           
 ByteCollection Reference2ByteMaps.UnmodifiableMap.values()
           
 ByteCollection AbstractReference2ByteSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 

Uses of ByteCollection in it.unimi.dsi.fastutil.shorts
 

Classes in it.unimi.dsi.fastutil.shorts that implement ByteCollection
protected  class AbstractShort2ByteSortedMap.ValuesCollection
          A wrapper exhibiting the values of a map.
 

Fields in it.unimi.dsi.fastutil.shorts declared as ByteCollection
protected  ByteCollection Short2ByteRBTreeMap.values
          Cached collection of values.
protected  ByteCollection Short2ByteMaps.Singleton.values
           
protected  ByteCollection Short2ByteMaps.SynchronizedMap.values
           
protected  ByteCollection Short2ByteMaps.UnmodifiableMap.values
           
protected  ByteCollection Short2ByteLinkedOpenHashMap.values
          Cached collection of values.
protected  ByteCollection Short2ByteAVLTreeMap.values
          Cached collection of values.
protected  ByteCollection Short2ByteOpenHashMap.values
          Cached collection of values.
 

Methods in it.unimi.dsi.fastutil.shorts that return ByteCollection
 ByteCollection Short2ByteArrayMap.values()
           
 ByteCollection Short2ByteRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection AbstractShort2ByteSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Short2ByteSortedMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection Short2ByteMap.values()
          Returns a set view of the values contained in this map.
 ByteCollection Short2ByteMaps.EmptyMap.values()
           
 ByteCollection Short2ByteMaps.Singleton.values()
           
 ByteCollection Short2ByteMaps.SynchronizedMap.values()
           
 ByteCollection Short2ByteMaps.UnmodifiableMap.values()
           
 ByteCollection Short2ByteLinkedOpenHashMap.values()
           
 ByteCollection Short2ByteAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 ByteCollection Short2ByteOpenHashMap.values()
           
 ByteCollection AbstractShort2ByteMap.values()
          Returns a type-specific-set view of the values of this map.
 



Copyright © 2011. All Rights Reserved.