Uses of Interface
it.unimi.dsi.fastutil.booleans.BooleanCollection

Packages that use BooleanCollection
it.unimi.dsi.fastutil.booleans Provides type-specific classes for boolean elements or keys. 
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 BooleanCollection in it.unimi.dsi.fastutil.booleans
 

Subinterfaces of BooleanCollection in it.unimi.dsi.fastutil.booleans
 interface BooleanBigList
          A type-specific BigList; provides some additional methods that use polymorphism to avoid (un)boxing.
 interface BooleanList
          A type-specific List; provides some additional methods that use polymorphism to avoid (un)boxing.
 interface BooleanSet
          A type-specific Set; provides some additional methods that use polymorphism to avoid (un)boxing.
 

Classes in it.unimi.dsi.fastutil.booleans that implement BooleanCollection
 class AbstractBooleanBigList
          An abstract class providing basic methods for big lists implementing a type-specific big list interface.
static class AbstractBooleanBigList.BooleanSubList
           
 class AbstractBooleanCollection
          An abstract class providing basic methods for collections implementing a type-specific interface.
 class AbstractBooleanList
          An abstract class providing basic methods for lists implementing a type-specific list interface.
static class AbstractBooleanList.BooleanSubList
           
 class AbstractBooleanSet
          An abstract class providing basic methods for sets implementing a type-specific interface.
 class BooleanArrayList
          A type-specific array-based list; provides some additional methods that use polymorphism to avoid (un)boxing.
 class BooleanArraySet
          A simple, brute-force implementation of a set based on a backing array.
 class BooleanBigArrayBigList
          A type-specific big list based on a big array; provides some additional methods that use polymorphism to avoid (un)boxing.
static class BooleanBigLists.EmptyBigList
          An immutable class representing an empty type-specific big list.
static class BooleanBigLists.ListBigList
          A class exposing a list as a big list.
static class BooleanBigLists.Singleton
          An immutable class representing a type-specific singleton big list.
static class BooleanBigLists.SynchronizedBigList
          A synchronized wrapper class for big lists.
static class BooleanBigLists.UnmodifiableBigList
          An unmodifiable wrapper class for big lists.
static class BooleanCollections.EmptyCollection
          An immutable class representing an empty type-specific collection.
static class BooleanCollections.IterableCollection
          A collection wrapper class for iterables.
static class BooleanCollections.SynchronizedCollection
          A synchronized wrapper class for collections.
static class BooleanCollections.UnmodifiableCollection
          An unmodifiable wrapper class for collections.
static class BooleanLists.EmptyList
          An immutable class representing an empty type-specific list.
static class BooleanLists.Singleton
          An immutable class representing a type-specific singleton list.
static class BooleanLists.SynchronizedList
          A synchronized wrapper class for lists.
static class BooleanLists.UnmodifiableList
          An unmodifiable wrapper class for lists.
 class BooleanOpenHashSet
          A type-specific hash set with with a fast, small-footprint implementation.
static class BooleanSets.EmptySet
          An immutable class representing the empty set and implementing a type-specific set interface.
static class BooleanSets.Singleton
          An immutable class representing a type-specific singleton set.
static class BooleanSets.SynchronizedSet
          A synchronized wrapper class for sets.
static class BooleanSets.UnmodifiableSet
          An unmodifiable wrapper class for sets.
 

Fields in it.unimi.dsi.fastutil.booleans declared as BooleanCollection
protected  BooleanCollection BooleanCollections.SynchronizedCollection.collection
           
protected  BooleanCollection BooleanCollections.UnmodifiableCollection.collection
           
 

Methods in it.unimi.dsi.fastutil.booleans that return BooleanCollection
static BooleanCollection BooleanCollections.asCollection(BooleanIterable iterable)
          Returns an unmodifiable collection backed by the specified iterable.
static BooleanCollection BooleanCollections.synchronize(BooleanCollection c)
          Returns a synchronized collection backed by the specified collection.
static BooleanCollection BooleanCollections.synchronize(BooleanCollection c, Object sync)
          Returns a synchronized collection backed by the specified collection, using an assigned object to synchronize.
static BooleanCollection BooleanCollections.unmodifiable(BooleanCollection c)
          Returns an unmodifiable collection backed by the specified collection.
 

Methods in it.unimi.dsi.fastutil.booleans with parameters of type BooleanCollection
 boolean AbstractBooleanCollection.addAll(BooleanCollection c)
          Adds all elements of the given type-specific collection to this collection.
 boolean AbstractBooleanBigList.addAll(BooleanCollection c)
           
 boolean BooleanCollection.addAll(BooleanCollection c)
           
 boolean BooleanSets.Singleton.addAll(BooleanCollection c)
           
 boolean BooleanCollections.EmptyCollection.addAll(BooleanCollection c)
           
 boolean BooleanCollections.SynchronizedCollection.addAll(BooleanCollection c)
           
 boolean BooleanCollections.UnmodifiableCollection.addAll(BooleanCollection c)
           
 boolean AbstractBooleanList.addAll(BooleanCollection c)
           
 boolean BooleanLists.EmptyList.addAll(BooleanCollection c)
           
 boolean BooleanLists.Singleton.addAll(BooleanCollection c)
           
 boolean BooleanBigLists.EmptyBigList.addAll(BooleanCollection c)
           
 boolean BooleanBigLists.Singleton.addAll(BooleanCollection c)
           
 boolean BooleanBigLists.ListBigList.addAll(BooleanCollection c)
           
 boolean BooleanArrayList.addAll(int index, BooleanCollection c)
           
 boolean BooleanList.addAll(int index, BooleanCollection c)
           
 boolean AbstractBooleanList.addAll(int index, BooleanCollection c)
          Delegates to a more generic method.
 boolean AbstractBooleanList.BooleanSubList.addAll(int index, BooleanCollection c)
           
 boolean BooleanLists.EmptyList.addAll(int i, BooleanCollection c)
           
 boolean BooleanLists.Singleton.addAll(int i, BooleanCollection c)
           
 boolean BooleanLists.SynchronizedList.addAll(int index, BooleanCollection c)
           
 boolean BooleanLists.UnmodifiableList.addAll(int index, BooleanCollection c)
           
 boolean AbstractBooleanBigList.addAll(long index, BooleanCollection c)
          Delegates to a more generic method.
 boolean AbstractBooleanBigList.BooleanSubList.addAll(long index, BooleanCollection c)
           
 boolean BooleanBigLists.EmptyBigList.addAll(long i, BooleanCollection c)
           
 boolean BooleanBigLists.Singleton.addAll(long i, BooleanCollection c)
           
 boolean BooleanBigLists.SynchronizedBigList.addAll(long index, BooleanCollection c)
           
 boolean BooleanBigLists.UnmodifiableBigList.addAll(long index, BooleanCollection c)
           
 boolean BooleanBigLists.ListBigList.addAll(long index, BooleanCollection c)
           
 boolean BooleanBigList.addAll(long index, BooleanCollection c)
           
 boolean AbstractBooleanCollection.containsAll(BooleanCollection c)
          Checks whether this collection contains all elements from the given type-specific collection.
 boolean BooleanCollection.containsAll(BooleanCollection c)
           
 boolean BooleanCollections.EmptyCollection.containsAll(BooleanCollection c)
           
 boolean BooleanCollections.SynchronizedCollection.containsAll(BooleanCollection c)
           
 boolean BooleanCollections.UnmodifiableCollection.containsAll(BooleanCollection c)
           
 boolean BooleanBigLists.ListBigList.containsAll(BooleanCollection c)
           
static int BooleanIterators.pour(BooleanIterator i, BooleanCollection s)
          Pours an iterator into a type-specific collection.
static int BooleanIterators.pour(BooleanIterator i, BooleanCollection s, int max)
          Pours an iterator into a type-specific collection, with a limit on the number of elements.
 boolean AbstractBooleanCollection.removeAll(BooleanCollection c)
          Remove from this collection all elements in the given type-specific collection.
 boolean BooleanCollection.removeAll(BooleanCollection c)
           
 boolean BooleanSets.Singleton.removeAll(BooleanCollection c)
           
 boolean BooleanCollections.EmptyCollection.removeAll(BooleanCollection c)
           
 boolean BooleanCollections.SynchronizedCollection.removeAll(BooleanCollection c)
           
 boolean BooleanCollections.UnmodifiableCollection.removeAll(BooleanCollection c)
           
 boolean BooleanBigLists.ListBigList.removeAll(BooleanCollection c)
           
 boolean AbstractBooleanCollection.retainAll(BooleanCollection c)
          Retains in this collection only elements from the given type-specific collection.
 boolean BooleanCollection.retainAll(BooleanCollection c)
           
 boolean BooleanSets.Singleton.retainAll(BooleanCollection c)
           
 boolean BooleanCollections.EmptyCollection.retainAll(BooleanCollection c)
           
 boolean BooleanCollections.SynchronizedCollection.retainAll(BooleanCollection c)
           
 boolean BooleanCollections.UnmodifiableCollection.retainAll(BooleanCollection c)
           
 boolean BooleanBigLists.ListBigList.retainAll(BooleanCollection c)
           
static BooleanCollection BooleanCollections.synchronize(BooleanCollection c)
          Returns a synchronized collection backed by the specified collection.
static BooleanCollection BooleanCollections.synchronize(BooleanCollection c, Object sync)
          Returns a synchronized collection backed by the specified collection, using an assigned object to synchronize.
static BooleanCollection BooleanCollections.unmodifiable(BooleanCollection c)
          Returns an unmodifiable collection backed by the specified collection.
static long BooleanIterators.unwrap(BooleanIterator i, BooleanCollection c)
          Unwraps an iterator into a type-specific collection.
static int BooleanIterators.unwrap(BooleanIterator i, BooleanCollection 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.booleans with parameters of type BooleanCollection
BooleanArrayList(BooleanCollection c)
          Creates a new array list and fills it with a given type-specific collection.
BooleanArraySet(BooleanCollection c)
          Creates a new array set copying the contents of a given collection.
BooleanBigArrayBigList(BooleanCollection c)
          Creates a new big-array big list and fills it with a given type-specific collection.
BooleanCollections.SynchronizedCollection(BooleanCollection c)
           
BooleanCollections.SynchronizedCollection(BooleanCollection c, Object sync)
           
BooleanCollections.UnmodifiableCollection(BooleanCollection c)
           
BooleanOpenHashSet(BooleanCollection c)
          Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
BooleanOpenHashSet(BooleanCollection c, float f)
          Creates a new hash set copying a given type-specific collection.
 

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

Classes in it.unimi.dsi.fastutil.bytes that implement BooleanCollection
protected  class AbstractByte2BooleanSortedMap.ValuesCollection
          A wrapper exhibiting the values of a map.
 

Fields in it.unimi.dsi.fastutil.bytes declared as BooleanCollection
protected  BooleanCollection Byte2BooleanOpenHashMap.values
          Cached collection of values.
protected  BooleanCollection Byte2BooleanMaps.Singleton.values
           
protected  BooleanCollection Byte2BooleanMaps.SynchronizedMap.values
           
protected  BooleanCollection Byte2BooleanMaps.UnmodifiableMap.values
           
protected  BooleanCollection Byte2BooleanLinkedOpenHashMap.values
          Cached collection of values.
protected  BooleanCollection Byte2BooleanRBTreeMap.values
          Cached collection of values.
protected  BooleanCollection Byte2BooleanAVLTreeMap.values
          Cached collection of values.
 

Methods in it.unimi.dsi.fastutil.bytes that return BooleanCollection
 BooleanCollection Byte2BooleanArrayMap.values()
           
 BooleanCollection AbstractByte2BooleanSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Byte2BooleanOpenHashMap.values()
           
 BooleanCollection Byte2BooleanMaps.EmptyMap.values()
           
 BooleanCollection Byte2BooleanMaps.Singleton.values()
           
 BooleanCollection Byte2BooleanMaps.SynchronizedMap.values()
           
 BooleanCollection Byte2BooleanMaps.UnmodifiableMap.values()
           
 BooleanCollection Byte2BooleanSortedMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection Byte2BooleanMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection Byte2BooleanLinkedOpenHashMap.values()
           
 BooleanCollection Byte2BooleanRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Byte2BooleanAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection AbstractByte2BooleanMap.values()
          Returns a type-specific-set view of the values of this map.
 

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

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

Fields in it.unimi.dsi.fastutil.chars declared as BooleanCollection
protected  BooleanCollection Char2BooleanRBTreeMap.values
          Cached collection of values.
protected  BooleanCollection Char2BooleanAVLTreeMap.values
          Cached collection of values.
protected  BooleanCollection Char2BooleanLinkedOpenHashMap.values
          Cached collection of values.
protected  BooleanCollection Char2BooleanOpenHashMap.values
          Cached collection of values.
protected  BooleanCollection Char2BooleanMaps.Singleton.values
           
protected  BooleanCollection Char2BooleanMaps.SynchronizedMap.values
           
protected  BooleanCollection Char2BooleanMaps.UnmodifiableMap.values
           
 

Methods in it.unimi.dsi.fastutil.chars that return BooleanCollection
 BooleanCollection AbstractChar2BooleanMap.values()
          Returns a type-specific-set view of the values of this map.
 BooleanCollection AbstractChar2BooleanSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Char2BooleanSortedMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection Char2BooleanArrayMap.values()
           
 BooleanCollection Char2BooleanRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Char2BooleanAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Char2BooleanMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection Char2BooleanLinkedOpenHashMap.values()
           
 BooleanCollection Char2BooleanOpenHashMap.values()
           
 BooleanCollection Char2BooleanMaps.EmptyMap.values()
           
 BooleanCollection Char2BooleanMaps.Singleton.values()
           
 BooleanCollection Char2BooleanMaps.SynchronizedMap.values()
           
 BooleanCollection Char2BooleanMaps.UnmodifiableMap.values()
           
 

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

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

Fields in it.unimi.dsi.fastutil.doubles declared as BooleanCollection
protected  BooleanCollection Double2BooleanRBTreeMap.values
          Cached collection of values.
protected  BooleanCollection Double2BooleanMaps.Singleton.values
           
protected  BooleanCollection Double2BooleanMaps.SynchronizedMap.values
           
protected  BooleanCollection Double2BooleanMaps.UnmodifiableMap.values
           
protected  BooleanCollection Double2BooleanOpenHashMap.values
          Cached collection of values.
protected  BooleanCollection Double2BooleanAVLTreeMap.values
          Cached collection of values.
protected  BooleanCollection Double2BooleanLinkedOpenHashMap.values
          Cached collection of values.
 

Methods in it.unimi.dsi.fastutil.doubles that return BooleanCollection
 BooleanCollection Double2BooleanSortedMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection AbstractDouble2BooleanSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Double2BooleanRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Double2BooleanMaps.EmptyMap.values()
           
 BooleanCollection Double2BooleanMaps.Singleton.values()
           
 BooleanCollection Double2BooleanMaps.SynchronizedMap.values()
           
 BooleanCollection Double2BooleanMaps.UnmodifiableMap.values()
           
 BooleanCollection Double2BooleanMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection AbstractDouble2BooleanMap.values()
          Returns a type-specific-set view of the values of this map.
 BooleanCollection Double2BooleanArrayMap.values()
           
 BooleanCollection Double2BooleanOpenHashMap.values()
           
 BooleanCollection Double2BooleanAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Double2BooleanLinkedOpenHashMap.values()
           
 

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

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

Fields in it.unimi.dsi.fastutil.floats declared as BooleanCollection
protected  BooleanCollection Float2BooleanMaps.Singleton.values
           
protected  BooleanCollection Float2BooleanMaps.SynchronizedMap.values
           
protected  BooleanCollection Float2BooleanMaps.UnmodifiableMap.values
           
protected  BooleanCollection Float2BooleanRBTreeMap.values
          Cached collection of values.
protected  BooleanCollection Float2BooleanOpenHashMap.values
          Cached collection of values.
protected  BooleanCollection Float2BooleanAVLTreeMap.values
          Cached collection of values.
protected  BooleanCollection Float2BooleanLinkedOpenHashMap.values
          Cached collection of values.
 

Methods in it.unimi.dsi.fastutil.floats that return BooleanCollection
 BooleanCollection Float2BooleanMaps.EmptyMap.values()
           
 BooleanCollection Float2BooleanMaps.Singleton.values()
           
 BooleanCollection Float2BooleanMaps.SynchronizedMap.values()
           
 BooleanCollection Float2BooleanMaps.UnmodifiableMap.values()
           
 BooleanCollection Float2BooleanRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection AbstractFloat2BooleanMap.values()
          Returns a type-specific-set view of the values of this map.
 BooleanCollection Float2BooleanOpenHashMap.values()
           
 BooleanCollection Float2BooleanAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Float2BooleanSortedMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection Float2BooleanArrayMap.values()
           
 BooleanCollection AbstractFloat2BooleanSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Float2BooleanLinkedOpenHashMap.values()
           
 BooleanCollection Float2BooleanMap.values()
          Returns a set view of the values contained in this map.
 

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

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

Fields in it.unimi.dsi.fastutil.ints declared as BooleanCollection
protected  BooleanCollection Int2BooleanLinkedOpenHashMap.values
          Cached collection of values.
protected  BooleanCollection Int2BooleanOpenHashMap.values
          Cached collection of values.
protected  BooleanCollection Int2BooleanMaps.Singleton.values
           
protected  BooleanCollection Int2BooleanMaps.SynchronizedMap.values
           
protected  BooleanCollection Int2BooleanMaps.UnmodifiableMap.values
           
protected  BooleanCollection Int2BooleanAVLTreeMap.values
          Cached collection of values.
protected  BooleanCollection Int2BooleanRBTreeMap.values
          Cached collection of values.
 

Methods in it.unimi.dsi.fastutil.ints that return BooleanCollection
 BooleanCollection Int2BooleanArrayMap.values()
           
 BooleanCollection Int2BooleanLinkedOpenHashMap.values()
           
 BooleanCollection Int2BooleanOpenHashMap.values()
           
 BooleanCollection AbstractInt2BooleanMap.values()
          Returns a type-specific-set view of the values of this map.
 BooleanCollection Int2BooleanMaps.EmptyMap.values()
           
 BooleanCollection Int2BooleanMaps.Singleton.values()
           
 BooleanCollection Int2BooleanMaps.SynchronizedMap.values()
           
 BooleanCollection Int2BooleanMaps.UnmodifiableMap.values()
           
 BooleanCollection Int2BooleanAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Int2BooleanMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection Int2BooleanRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Int2BooleanSortedMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection AbstractInt2BooleanSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 

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

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

Fields in it.unimi.dsi.fastutil.longs declared as BooleanCollection
protected  BooleanCollection Long2BooleanMaps.Singleton.values
           
protected  BooleanCollection Long2BooleanMaps.SynchronizedMap.values
           
protected  BooleanCollection Long2BooleanMaps.UnmodifiableMap.values
           
protected  BooleanCollection Long2BooleanAVLTreeMap.values
          Cached collection of values.
protected  BooleanCollection Long2BooleanRBTreeMap.values
          Cached collection of values.
protected  BooleanCollection Long2BooleanOpenHashMap.values
          Cached collection of values.
protected  BooleanCollection Long2BooleanLinkedOpenHashMap.values
          Cached collection of values.
 

Methods in it.unimi.dsi.fastutil.longs that return BooleanCollection
 BooleanCollection Long2BooleanMaps.EmptyMap.values()
           
 BooleanCollection Long2BooleanMaps.Singleton.values()
           
 BooleanCollection Long2BooleanMaps.SynchronizedMap.values()
           
 BooleanCollection Long2BooleanMaps.UnmodifiableMap.values()
           
 BooleanCollection AbstractLong2BooleanMap.values()
          Returns a type-specific-set view of the values of this map.
 BooleanCollection Long2BooleanSortedMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection Long2BooleanMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection Long2BooleanAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Long2BooleanRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection AbstractLong2BooleanSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Long2BooleanOpenHashMap.values()
           
 BooleanCollection Long2BooleanArrayMap.values()
           
 BooleanCollection Long2BooleanLinkedOpenHashMap.values()
           
 

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

Classes in it.unimi.dsi.fastutil.objects that implement BooleanCollection
protected  class AbstractObject2BooleanSortedMap.ValuesCollection
          A wrapper exhibiting the values of a map.
protected  class AbstractReference2BooleanSortedMap.ValuesCollection
          A wrapper exhibiting the values of a map.
 

Fields in it.unimi.dsi.fastutil.objects declared as BooleanCollection
protected  BooleanCollection Object2BooleanLinkedOpenCustomHashMap.values
          Cached collection of values.
protected  BooleanCollection Object2BooleanRBTreeMap.values
          Cached collection of values.
protected  BooleanCollection Object2BooleanOpenCustomHashMap.values
          Cached collection of values.
protected  BooleanCollection Reference2BooleanLinkedOpenHashMap.values
          Cached collection of values.
protected  BooleanCollection Reference2BooleanOpenHashMap.values
          Cached collection of values.
protected  BooleanCollection Object2BooleanMaps.Singleton.values
           
protected  BooleanCollection Object2BooleanMaps.SynchronizedMap.values
           
protected  BooleanCollection Object2BooleanMaps.UnmodifiableMap.values
           
protected  BooleanCollection Object2BooleanLinkedOpenHashMap.values
          Cached collection of values.
protected  BooleanCollection Object2BooleanAVLTreeMap.values
          Cached collection of values.
protected  BooleanCollection Reference2BooleanMaps.Singleton.values
           
protected  BooleanCollection Reference2BooleanMaps.SynchronizedMap.values
           
protected  BooleanCollection Reference2BooleanMaps.UnmodifiableMap.values
           
protected  BooleanCollection Object2BooleanOpenHashMap.values
          Cached collection of values.
 

Methods in it.unimi.dsi.fastutil.objects that return BooleanCollection
 BooleanCollection Object2BooleanLinkedOpenCustomHashMap.values()
           
 BooleanCollection AbstractObject2BooleanMap.values()
          Returns a type-specific-set view of the values of this map.
 BooleanCollection Object2BooleanRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Object2BooleanOpenCustomHashMap.values()
           
 BooleanCollection Reference2BooleanSortedMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection Reference2BooleanMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection AbstractObject2BooleanSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Object2BooleanMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection AbstractReference2BooleanSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Reference2BooleanLinkedOpenHashMap.values()
           
 BooleanCollection Reference2BooleanOpenHashMap.values()
           
 BooleanCollection Object2BooleanMaps.EmptyMap.values()
           
 BooleanCollection Object2BooleanMaps.Singleton.values()
           
 BooleanCollection Object2BooleanMaps.SynchronizedMap.values()
           
 BooleanCollection Object2BooleanMaps.UnmodifiableMap.values()
           
 BooleanCollection AbstractReference2BooleanMap.values()
          Returns a type-specific-set view of the values of this map.
 BooleanCollection Reference2BooleanArrayMap.values()
           
 BooleanCollection Object2BooleanLinkedOpenHashMap.values()
           
 BooleanCollection Object2BooleanAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Reference2BooleanMaps.EmptyMap.values()
           
 BooleanCollection Reference2BooleanMaps.Singleton.values()
           
 BooleanCollection Reference2BooleanMaps.SynchronizedMap.values()
           
 BooleanCollection Reference2BooleanMaps.UnmodifiableMap.values()
           
 BooleanCollection Object2BooleanSortedMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection Object2BooleanOpenHashMap.values()
           
 BooleanCollection Object2BooleanArrayMap.values()
           
 

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

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

Fields in it.unimi.dsi.fastutil.shorts declared as BooleanCollection
protected  BooleanCollection Short2BooleanOpenHashMap.values
          Cached collection of values.
protected  BooleanCollection Short2BooleanMaps.Singleton.values
           
protected  BooleanCollection Short2BooleanMaps.SynchronizedMap.values
           
protected  BooleanCollection Short2BooleanMaps.UnmodifiableMap.values
           
protected  BooleanCollection Short2BooleanRBTreeMap.values
          Cached collection of values.
protected  BooleanCollection Short2BooleanAVLTreeMap.values
          Cached collection of values.
protected  BooleanCollection Short2BooleanLinkedOpenHashMap.values
          Cached collection of values.
 

Methods in it.unimi.dsi.fastutil.shorts that return BooleanCollection
 BooleanCollection Short2BooleanOpenHashMap.values()
           
 BooleanCollection AbstractShort2BooleanSortedMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Short2BooleanMaps.EmptyMap.values()
           
 BooleanCollection Short2BooleanMaps.Singleton.values()
           
 BooleanCollection Short2BooleanMaps.SynchronizedMap.values()
           
 BooleanCollection Short2BooleanMaps.UnmodifiableMap.values()
           
 BooleanCollection Short2BooleanSortedMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection Short2BooleanRBTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Short2BooleanAVLTreeMap.values()
          Returns a type-specific collection view of the values contained in this map.
 BooleanCollection Short2BooleanArrayMap.values()
           
 BooleanCollection Short2BooleanMap.values()
          Returns a set view of the values contained in this map.
 BooleanCollection AbstractShort2BooleanMap.values()
          Returns a type-specific-set view of the values of this map.
 BooleanCollection Short2BooleanLinkedOpenHashMap.values()
           
 



Copyright © 2011. All Rights Reserved.