Package | Description |
---|---|
gnu.trove |
GNU Trove: High performance collections for Java.
|
Modifier and Type | Class and Description |
---|---|
class |
TLongByteHashMap
An open addressed Map implementation for long keys and byte values.
|
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<V>
An open addressed Map implementation for long keys and Object values.
|
class |
TLongShortHashMap
An open addressed Map implementation for long keys and short values.
|
Modifier and Type | Field and Description |
---|---|
protected TLongHashingStrategy |
TLongHash._hashingStrategy
strategy used to hash values in this collection
|
Constructor and Description |
---|
TLongByteHashMap(int initialCapacity,
float loadFactor,
TLongHashingStrategy strategy)
Creates a new
TLongByteHashMap instance with a prime
value at or near the specified capacity and load factor. |
TLongByteHashMap(int initialCapacity,
TLongHashingStrategy strategy)
Creates a new
TLongByteHashMap instance whose capacity
is the next highest prime above initialCapacity + 1
unless that value is already prime. |
TLongByteHashMap(TLongHashingStrategy strategy)
Creates a new
TLongByteHashMap instance with the default
capacity and load factor. |
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. |
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(TLongHashingStrategy strategy)
Creates a new
TLongDoubleHashMap instance with the default
capacity and load factor. |
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. |
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(TLongHashingStrategy strategy)
Creates a new
TLongFloatHashMap instance with the default
capacity and load factor. |
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. |
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(TLongHashingStrategy strategy)
Creates a new
TLongHash instance with the default
capacity and load factor. |
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(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(long[] array,
TLongHashingStrategy strategy)
Creates a new
TLongHashSet instance containing the
elements of array. |
TLongHashSet(TLongHashingStrategy strategy)
Creates a new
TLongHash instance with the default
capacity and load factor. |
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. |
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(TLongHashingStrategy strategy)
Creates a new
TLongIntHashMap instance with the default
capacity and load factor. |
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. |
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(TLongHashingStrategy strategy)
Creates a new
TLongLongHashMap instance with the default
capacity and load factor. |
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. |
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(TLongHashingStrategy strategy)
Creates a new
TLongObjectHashMap instance with the default
capacity and load factor. |
TLongShortHashMap(int initialCapacity,
float loadFactor,
TLongHashingStrategy strategy)
Creates a new
TLongShortHashMap instance with a prime
value at or near the specified capacity and load factor. |
TLongShortHashMap(int initialCapacity,
TLongHashingStrategy strategy)
Creates a new
TLongShortHashMap instance whose capacity
is the next highest prime above initialCapacity + 1
unless that value is already prime. |
TLongShortHashMap(TLongHashingStrategy strategy)
Creates a new
TLongShortHashMap instance with the default
capacity and load factor. |
GNU Trove is copyright ? 2001-2009 Eric D. Friedman. All Rights Reserved.