GNU Trove

Uses of Interface
gnu.trove.TLongHashingStrategy

Packages that use TLongHashingStrategy
gnu.trove GNU Trove: High performance collections for Java. 
 

Uses of TLongHashingStrategy in gnu.trove
 

Classes in gnu.trove that implement TLongHashingStrategy
 class TLongDoubleHashMap
          An open addressed Map implementation for long keys and double values.
 class TLongFloatHashMap
          An open addressed Map implementation for long keys and float values.
 class TLongHash
          An open addressed hashing implementation for long primitives.
 class TLongHashSet
          An open addressed set implementation for long primitives.
 class TLongIntHashMap
          An open addressed Map implementation for long keys and int values.
 class TLongLongHashMap
          An open addressed Map implementation for long keys and long values.
 class TLongObjectHashMap
          An open addressed Map implementation for long keys and Object values.
 

Fields in gnu.trove declared as TLongHashingStrategy
protected  TLongHashingStrategy TLongHash._hashingStrategy
          strategy used to hash values in this collection
 

Constructors in gnu.trove with parameters of type TLongHashingStrategy
TLongObjectHashMap(TLongHashingStrategy strategy)
          Creates a new TLongObjectHashMap instance with the default capacity and load factor.
TLongObjectHashMap(int initialCapacity, TLongHashingStrategy strategy)
          Creates a new TLongObjectHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TLongObjectHashMap(int initialCapacity, float loadFactor, TLongHashingStrategy strategy)
          Creates a new TLongObjectHashMap instance with a prime value at or near the specified capacity and load factor.
TLongLongHashMap(TLongHashingStrategy strategy)
          Creates a new TLongLongHashMap instance with the default capacity and load factor.
TLongLongHashMap(int initialCapacity, TLongHashingStrategy strategy)
          Creates a new TLongLongHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TLongLongHashMap(int initialCapacity, float loadFactor, TLongHashingStrategy strategy)
          Creates a new TLongLongHashMap instance with a prime value at or near the specified capacity and load factor.
TLongIntHashMap(TLongHashingStrategy strategy)
          Creates a new TLongIntHashMap instance with the default capacity and load factor.
TLongIntHashMap(int initialCapacity, TLongHashingStrategy strategy)
          Creates a new TLongIntHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TLongIntHashMap(int initialCapacity, float loadFactor, TLongHashingStrategy strategy)
          Creates a new TLongIntHashMap instance with a prime value at or near the specified capacity and load factor.
TLongHashSet(TLongHashingStrategy strategy)
          Creates a new TLongHash instance with the default capacity and load factor.
TLongHashSet(int initialCapacity, TLongHashingStrategy strategy)
          Creates a new TLongHash instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TLongHashSet(int initialCapacity, float loadFactor, TLongHashingStrategy strategy)
          Creates a new TLongHash instance with a prime value at or near the specified capacity and load factor.
TLongHashSet(long[] array, TLongHashingStrategy strategy)
          Creates a new TLongHashSet instance containing the elements of array.
TLongHash(TLongHashingStrategy strategy)
          Creates a new TLongHash instance with the default capacity and load factor.
TLongHash(int initialCapacity, TLongHashingStrategy strategy)
          Creates a new TLongHash instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TLongHash(int initialCapacity, float loadFactor, TLongHashingStrategy strategy)
          Creates a new TLongHash instance with a prime value at or near the specified capacity and load factor.
TLongFloatHashMap(TLongHashingStrategy strategy)
          Creates a new TLongFloatHashMap instance with the default capacity and load factor.
TLongFloatHashMap(int initialCapacity, TLongHashingStrategy strategy)
          Creates a new TLongFloatHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TLongFloatHashMap(int initialCapacity, float loadFactor, TLongHashingStrategy strategy)
          Creates a new TLongFloatHashMap instance with a prime value at or near the specified capacity and load factor.
TLongDoubleHashMap(TLongHashingStrategy strategy)
          Creates a new TLongDoubleHashMap instance with the default capacity and load factor.
TLongDoubleHashMap(int initialCapacity, TLongHashingStrategy strategy)
          Creates a new TLongDoubleHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TLongDoubleHashMap(int initialCapacity, float loadFactor, TLongHashingStrategy strategy)
          Creates a new TLongDoubleHashMap instance with a prime value at or near the specified capacity and load factor.
 


GNU Trove

GNU Trove is copyright © 2001-2003 Eric D. Friedman. All Rights Reserved.