Uses of Interface
gnu.trove.TObjectHashingStrategy
Packages that use TObjectHashingStrategy
-
Uses of TObjectHashingStrategy in gnu.trove
Classes in gnu.trove that implement TObjectHashingStrategyModifier and TypeClassDescriptionclass
THashMap<K,
V> An implementation of the Map interface which uses an open addressed hash table to store its contents.class
THashSet<E>
An implementation of the Set interface that uses an open-addressed hash table to store its contents.class
An open addressed Map implementation for Object keys and byte values.class
An open addressed Map implementation for Object keys and double values.class
An open addressed Map implementation for Object keys and float values.class
TObjectHash<T>
An open addressed hashing implementation for Object types.final class
This object hashing strategy uses the System.identityHashCode method to provide identity hash codes.class
An open addressed Map implementation for Object keys and int values.class
An open addressed Map implementation for Object keys and long values.class
An open addressed Map implementation for Object keys and short values.Fields in gnu.trove declared as TObjectHashingStrategyModifier and TypeFieldDescriptionprotected TObjectHashingStrategy<T>
TObjectHash._hashingStrategy
the strategy used to hash objects in this collection.Constructors in gnu.trove with parameters of type TObjectHashingStrategyModifierConstructorDescriptionTHashMap
(int initialCapacity, float loadFactor, TObjectHashingStrategy<K> strategy) Creates a newTHashMap
instance with a prime capacity equal to or greater than initialCapacity and with the specified load factor.THashMap
(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTHashMap
instance with a prime capacity equal to or greater than initialCapacity and with the default load factor.THashMap
(TObjectHashingStrategy<K> strategy) Creates a newTHashMap
instance with the default capacity and load factor.Creates a newTHashMap
instance which contains the key/value pairs in map.THashSet
(int initialCapacity, float loadFactor, TObjectHashingStrategy<E> strategy) Creates a newTHashSet
instance with a prime capacity equal to or greater than initialCapacity and with the specified load factor.THashSet
(int initialCapacity, TObjectHashingStrategy<E> strategy) Creates a newTHashSet
instance with a prime capacity equal to or greater than initialCapacity and with the default load factor.THashSet
(TObjectHashingStrategy<E> strategy) Creates a newTHashSet
instance with the default capacity and load factor.THashSet
(Collection<? extends E> collection, TObjectHashingStrategy<E> strategy) Creates a newTHashSet
instance containing the elements of collection.TObjectByteHashMap
(int initialCapacity, float loadFactor, TObjectHashingStrategy<K> strategy) Creates a newTObjectByteHashMap
instance with a prime value at or near the specified capacity and load factor.TObjectByteHashMap
(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTObjectByteHashMap
instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectByteHashMap
(TObjectHashingStrategy<K> strategy) Creates a newTObjectByteHashMap
instance with the default capacity and load factor.TObjectDoubleHashMap
(int initialCapacity, float loadFactor, TObjectHashingStrategy<K> strategy) Creates a newTObjectDoubleHashMap
instance with a prime value at or near the specified capacity and load factor.TObjectDoubleHashMap
(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTObjectDoubleHashMap
instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectDoubleHashMap
(TObjectHashingStrategy<K> strategy) Creates a newTObjectDoubleHashMap
instance with the default capacity and load factor.TObjectFloatHashMap
(int initialCapacity, float loadFactor, TObjectHashingStrategy<K> strategy) Creates a newTObjectFloatHashMap
instance with a prime value at or near the specified capacity and load factor.TObjectFloatHashMap
(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTObjectFloatHashMap
instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectFloatHashMap
(TObjectHashingStrategy<K> strategy) Creates a newTObjectFloatHashMap
instance with the default capacity and load factor.TObjectHash
(int initialCapacity, float loadFactor, TObjectHashingStrategy<T> strategy) Creates a newTObjectHash
instance with a prime value at or near the specified capacity and load factor.TObjectHash
(int initialCapacity, TObjectHashingStrategy<T> strategy) Creates a newTObjectHash
instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectHash
(TObjectHashingStrategy<T> strategy) Creates a newTObjectHash
instance with the default capacity and load factor and a custom hashing strategy.TObjectIntHashMap
(int initialCapacity, float loadFactor, TObjectHashingStrategy<K> strategy) Creates a newTObjectIntHashMap
instance with a prime value at or near the specified capacity and load factor.TObjectIntHashMap
(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTObjectIntHashMap
instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectIntHashMap
(TObjectHashingStrategy<K> strategy) Creates a newTObjectIntHashMap
instance with the default capacity and load factor.TObjectLongHashMap
(int initialCapacity, float loadFactor, TObjectHashingStrategy<K> strategy) Creates a newTObjectLongHashMap
instance with a prime value at or near the specified capacity and load factor.TObjectLongHashMap
(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTObjectLongHashMap
instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectLongHashMap
(TObjectHashingStrategy<K> strategy) Creates a newTObjectLongHashMap
instance with the default capacity and load factor.TObjectShortHashMap
(int initialCapacity, float loadFactor, TObjectHashingStrategy<K> strategy) Creates a newTObjectShortHashMap
instance with a prime value at or near the specified capacity and load factor.TObjectShortHashMap
(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTObjectShortHashMap
instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectShortHashMap
(TObjectHashingStrategy<K> strategy) Creates a newTObjectShortHashMap
instance with the default capacity and load factor.