GNU Trove

Uses of Interface
gnu.trove.TIntHashingStrategy

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

Uses of TIntHashingStrategy in gnu.trove
 

Classes in gnu.trove that implement TIntHashingStrategy
 class TIntDoubleHashMap
          An open addressed Map implementation for int keys and double values.
 class TIntFloatHashMap
          An open addressed Map implementation for int keys and float values.
 class TIntHash
          An open addressed hashing implementation for int primitives.
 class TIntHashSet
          An open addressed set implementation for int primitives.
 class TIntIntHashMap
          An open addressed Map implementation for int keys and int values.
 class TIntLongHashMap
          An open addressed Map implementation for int keys and long values.
 class TIntObjectHashMap
          An open addressed Map implementation for int keys and Object values.
 

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

Constructors in gnu.trove with parameters of type TIntHashingStrategy
TIntObjectHashMap(TIntHashingStrategy strategy)
          Creates a new TIntObjectHashMap instance with the default capacity and load factor.
TIntObjectHashMap(int initialCapacity, TIntHashingStrategy strategy)
          Creates a new TIntObjectHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TIntObjectHashMap(int initialCapacity, float loadFactor, TIntHashingStrategy strategy)
          Creates a new TIntObjectHashMap instance with a prime value at or near the specified capacity and load factor.
TIntLongHashMap(TIntHashingStrategy strategy)
          Creates a new TIntLongHashMap instance with the default capacity and load factor.
TIntLongHashMap(int initialCapacity, TIntHashingStrategy strategy)
          Creates a new TIntLongHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TIntLongHashMap(int initialCapacity, float loadFactor, TIntHashingStrategy strategy)
          Creates a new TIntLongHashMap instance with a prime value at or near the specified capacity and load factor.
TIntIntHashMap(TIntHashingStrategy strategy)
          Creates a new TIntIntHashMap instance with the default capacity and load factor.
TIntIntHashMap(int initialCapacity, TIntHashingStrategy strategy)
          Creates a new TIntIntHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TIntIntHashMap(int initialCapacity, float loadFactor, TIntHashingStrategy strategy)
          Creates a new TIntIntHashMap instance with a prime value at or near the specified capacity and load factor.
TIntHashSet(TIntHashingStrategy strategy)
          Creates a new TIntHash instance with the default capacity and load factor.
TIntHashSet(int initialCapacity, TIntHashingStrategy strategy)
          Creates a new TIntHash instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TIntHashSet(int initialCapacity, float loadFactor, TIntHashingStrategy strategy)
          Creates a new TIntHash instance with a prime value at or near the specified capacity and load factor.
TIntHashSet(int[] array, TIntHashingStrategy strategy)
          Creates a new TIntHashSet instance containing the elements of array.
TIntHash(TIntHashingStrategy strategy)
          Creates a new TIntHash instance with the default capacity and load factor.
TIntHash(int initialCapacity, TIntHashingStrategy strategy)
          Creates a new TIntHash instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TIntHash(int initialCapacity, float loadFactor, TIntHashingStrategy strategy)
          Creates a new TIntHash instance with a prime value at or near the specified capacity and load factor.
TIntFloatHashMap(TIntHashingStrategy strategy)
          Creates a new TIntFloatHashMap instance with the default capacity and load factor.
TIntFloatHashMap(int initialCapacity, TIntHashingStrategy strategy)
          Creates a new TIntFloatHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TIntFloatHashMap(int initialCapacity, float loadFactor, TIntHashingStrategy strategy)
          Creates a new TIntFloatHashMap instance with a prime value at or near the specified capacity and load factor.
TIntDoubleHashMap(TIntHashingStrategy strategy)
          Creates a new TIntDoubleHashMap instance with the default capacity and load factor.
TIntDoubleHashMap(int initialCapacity, TIntHashingStrategy strategy)
          Creates a new TIntDoubleHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TIntDoubleHashMap(int initialCapacity, float loadFactor, TIntHashingStrategy strategy)
          Creates a new TIntDoubleHashMap 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.