Uses of Interface
com.gigaspaces.internal.gnu.trove.TObjectHashingStrategy
Packages that use TObjectHashingStrategy
Package
Description
GNU Trove: High performance collections for Java.
-
Uses of TObjectHashingStrategy in com.gigaspaces.internal.gnu.trove
Classes in com.gigaspaces.internal.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.classTObjectHash<T>An open addressed hashing implementation for Object types.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 com.gigaspaces.internal.gnu.trove declared as TObjectHashingStrategyModifier and TypeFieldDescriptionprotected TObjectHashingStrategy<T>TObjectHash._hashingStrategythe strategy used to hash objects in this collection.Constructors in com.gigaspaces.internal.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.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.