Uses of Interface
gnu.trove.TObjectHashingStrategy
Packages that use TObjectHashingStrategy
-
Uses of TObjectHashingStrategy in gnu.trove
Classes in gnu.trove that implement TObjectHashingStrategyModifier and TypeClassDescriptionclassTHashMap<K,V> An implementation of the Map interface which uses an open addressed hash table to store its contents.classTHashSet<E>An implementation of the Set interface that uses an open-addressed hash table to store its contents.classAn open addressed Map implementation for Object keys and byte values.classAn open addressed Map implementation for Object keys and double values.classAn open addressed Map implementation for Object keys and float values.classTObjectHash<T>An open addressed hashing implementation for Object types.final classThis object hashing strategy uses the System.identityHashCode method to provide identity hash codes.classAn open addressed Map implementation for Object keys and int values.classAn open addressed Map implementation for Object keys and long values.classAn open addressed Map implementation for Object keys and short values.Fields in gnu.trove declared as TObjectHashingStrategyModifier and TypeFieldDescriptionprotected TObjectHashingStrategy<T> TObjectHash._hashingStrategythe 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 newTHashMapinstance with a prime capacity equal to or greater than initialCapacity and with the specified load factor.THashMap(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTHashMapinstance with a prime capacity equal to or greater than initialCapacity and with the default load factor.THashMap(TObjectHashingStrategy<K> strategy) Creates a newTHashMapinstance with the default capacity and load factor.Creates a newTHashMapinstance which contains the key/value pairs in map.THashSet(int initialCapacity, float loadFactor, TObjectHashingStrategy<E> strategy) Creates a newTHashSetinstance with a prime capacity equal to or greater than initialCapacity and with the specified load factor.THashSet(int initialCapacity, TObjectHashingStrategy<E> strategy) Creates a newTHashSetinstance with a prime capacity equal to or greater than initialCapacity and with the default load factor.THashSet(TObjectHashingStrategy<E> strategy) Creates a newTHashSetinstance with the default capacity and load factor.THashSet(Collection<? extends E> collection, TObjectHashingStrategy<E> strategy) Creates a newTHashSetinstance containing the elements of collection.TObjectByteHashMap(int initialCapacity, float loadFactor, TObjectHashingStrategy<K> strategy) Creates a newTObjectByteHashMapinstance with a prime value at or near the specified capacity and load factor.TObjectByteHashMap(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTObjectByteHashMapinstance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectByteHashMap(TObjectHashingStrategy<K> strategy) Creates a newTObjectByteHashMapinstance with the default capacity and load factor.TObjectDoubleHashMap(int initialCapacity, float loadFactor, TObjectHashingStrategy<K> strategy) Creates a newTObjectDoubleHashMapinstance with a prime value at or near the specified capacity and load factor.TObjectDoubleHashMap(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTObjectDoubleHashMapinstance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectDoubleHashMap(TObjectHashingStrategy<K> strategy) Creates a newTObjectDoubleHashMapinstance with the default capacity and load factor.TObjectFloatHashMap(int initialCapacity, float loadFactor, TObjectHashingStrategy<K> strategy) Creates a newTObjectFloatHashMapinstance with a prime value at or near the specified capacity and load factor.TObjectFloatHashMap(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTObjectFloatHashMapinstance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectFloatHashMap(TObjectHashingStrategy<K> strategy) Creates a newTObjectFloatHashMapinstance with the default capacity and load factor.TObjectHash(int initialCapacity, float loadFactor, TObjectHashingStrategy<T> strategy) Creates a newTObjectHashinstance with a prime value at or near the specified capacity and load factor.TObjectHash(int initialCapacity, TObjectHashingStrategy<T> strategy) Creates a newTObjectHashinstance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectHash(TObjectHashingStrategy<T> strategy) Creates a newTObjectHashinstance with the default capacity and load factor and a custom hashing strategy.TObjectIntHashMap(int initialCapacity, float loadFactor, TObjectHashingStrategy<K> strategy) Creates a newTObjectIntHashMapinstance with a prime value at or near the specified capacity and load factor.TObjectIntHashMap(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTObjectIntHashMapinstance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectIntHashMap(TObjectHashingStrategy<K> strategy) Creates a newTObjectIntHashMapinstance with the default capacity and load factor.TObjectLongHashMap(int initialCapacity, float loadFactor, TObjectHashingStrategy<K> strategy) Creates a newTObjectLongHashMapinstance with a prime value at or near the specified capacity and load factor.TObjectLongHashMap(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTObjectLongHashMapinstance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectLongHashMap(TObjectHashingStrategy<K> strategy) Creates a newTObjectLongHashMapinstance with the default capacity and load factor.TObjectShortHashMap(int initialCapacity, float loadFactor, TObjectHashingStrategy<K> strategy) Creates a newTObjectShortHashMapinstance with a prime value at or near the specified capacity and load factor.TObjectShortHashMap(int initialCapacity, TObjectHashingStrategy<K> strategy) Creates a newTObjectShortHashMapinstance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.TObjectShortHashMap(TObjectHashingStrategy<K> strategy) Creates a newTObjectShortHashMapinstance with the default capacity and load factor.