public interface Hash
Modifier and Type | Interface and Description |
---|---|
static interface |
Hash.Strategy<K>
A generic hash strategy.
|
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_GROWTH_FACTOR
Deprecated.
|
static int |
DEFAULT_INITIAL_SIZE
The initial default size of a hash table.
|
static float |
DEFAULT_LOAD_FACTOR
The default load factor of a hash table.
|
static float |
FAST_LOAD_FACTOR
The load factor for a (usually small) table that is meant to be particularly fast.
|
static byte |
FREE
Deprecated.
|
static byte |
OCCUPIED
Deprecated.
|
static int[] |
PRIMES
Deprecated.
|
static byte |
REMOVED
Deprecated.
|
static float |
VERY_FAST_LOAD_FACTOR
The load factor for a (usually very small) table that is meant to be extremely fast.
|
static final int DEFAULT_INITIAL_SIZE
static final float DEFAULT_LOAD_FACTOR
static final float FAST_LOAD_FACTOR
static final float VERY_FAST_LOAD_FACTOR
@Deprecated static final int DEFAULT_GROWTH_FACTOR
@Deprecated static final byte FREE
@Deprecated static final byte OCCUPIED
@Deprecated static final byte REMOVED
@Deprecated static final int[] PRIMES