GNU Trove

Uses of Interface
gnu.trove.TFloatHashingStrategy

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

Uses of TFloatHashingStrategy in gnu.trove
 

Classes in gnu.trove that implement TFloatHashingStrategy
 class TFloatDoubleHashMap
          An open addressed Map implementation for float keys and double values.
 class TFloatFloatHashMap
          An open addressed Map implementation for float keys and float values.
 class TFloatHash
          An open addressed hashing implementation for float primitives.
 class TFloatHashSet
          An open addressed set implementation for float primitives.
 class TFloatIntHashMap
          An open addressed Map implementation for float keys and int values.
 class TFloatLongHashMap
          An open addressed Map implementation for float keys and long values.
 class TFloatObjectHashMap
          An open addressed Map implementation for float keys and Object values.
 

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

Constructors in gnu.trove with parameters of type TFloatHashingStrategy
TFloatObjectHashMap(TFloatHashingStrategy strategy)
          Creates a new TFloatObjectHashMap instance with the default capacity and load factor.
TFloatObjectHashMap(int initialCapacity, TFloatHashingStrategy strategy)
          Creates a new TFloatObjectHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TFloatObjectHashMap(int initialCapacity, float loadFactor, TFloatHashingStrategy strategy)
          Creates a new TFloatObjectHashMap instance with a prime value at or near the specified capacity and load factor.
TFloatLongHashMap(TFloatHashingStrategy strategy)
          Creates a new TFloatLongHashMap instance with the default capacity and load factor.
TFloatLongHashMap(int initialCapacity, TFloatHashingStrategy strategy)
          Creates a new TFloatLongHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TFloatLongHashMap(int initialCapacity, float loadFactor, TFloatHashingStrategy strategy)
          Creates a new TFloatLongHashMap instance with a prime value at or near the specified capacity and load factor.
TFloatIntHashMap(TFloatHashingStrategy strategy)
          Creates a new TFloatIntHashMap instance with the default capacity and load factor.
TFloatIntHashMap(int initialCapacity, TFloatHashingStrategy strategy)
          Creates a new TFloatIntHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TFloatIntHashMap(int initialCapacity, float loadFactor, TFloatHashingStrategy strategy)
          Creates a new TFloatIntHashMap instance with a prime value at or near the specified capacity and load factor.
TFloatHashSet(TFloatHashingStrategy strategy)
          Creates a new TFloatHash instance with the default capacity and load factor.
TFloatHashSet(int initialCapacity, TFloatHashingStrategy strategy)
          Creates a new TFloatHash instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TFloatHashSet(int initialCapacity, float loadFactor, TFloatHashingStrategy strategy)
          Creates a new TFloatHash instance with a prime value at or near the specified capacity and load factor.
TFloatHashSet(float[] array, TFloatHashingStrategy strategy)
          Creates a new TFloatHashSet instance containing the elements of array.
TFloatHash(TFloatHashingStrategy strategy)
          Creates a new TFloatHash instance with the default capacity and load factor.
TFloatHash(int initialCapacity, TFloatHashingStrategy strategy)
          Creates a new TFloatHash instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TFloatHash(int initialCapacity, float loadFactor, TFloatHashingStrategy strategy)
          Creates a new TFloatHash instance with a prime value at or near the specified capacity and load factor.
TFloatFloatHashMap(TFloatHashingStrategy strategy)
          Creates a new TFloatFloatHashMap instance with the default capacity and load factor.
TFloatFloatHashMap(int initialCapacity, TFloatHashingStrategy strategy)
          Creates a new TFloatFloatHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TFloatFloatHashMap(int initialCapacity, float loadFactor, TFloatHashingStrategy strategy)
          Creates a new TFloatFloatHashMap instance with a prime value at or near the specified capacity and load factor.
TFloatDoubleHashMap(TFloatHashingStrategy strategy)
          Creates a new TFloatDoubleHashMap instance with the default capacity and load factor.
TFloatDoubleHashMap(int initialCapacity, TFloatHashingStrategy strategy)
          Creates a new TFloatDoubleHashMap instance whose capacity is the next highest prime above initialCapacity + 1 unless that value is already prime.
TFloatDoubleHashMap(int initialCapacity, float loadFactor, TFloatHashingStrategy strategy)
          Creates a new TFloatDoubleHashMap 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.