CharKeyOpenHashMap(CharHashFunction keyhash) |
Creates a new hash map with capacity 11, a relative
growth factor of 1.0, and a load factor of 75%.
|
CharKeyOpenHashMap(CharHashFunction keyhash,
double loadFactor) |
Creates a new hash map with a capacity of 11, a relative
growth factor of 1.0, and a specified load factor.
|
CharKeyOpenHashMap(CharHashFunction keyhash,
int capacity) |
Creates a new hash map with a specified capacity, a relative
growth factor of 1.0, and a load factor of 75%.
|
CharKeyOpenHashMap(CharHashFunction keyhash,
int capacity,
double loadFactor) |
Creates a new hash map with a specified capacity and
load factor, and a relative growth factor of 1.0.
|
CharKeyOpenHashMap(CharHashFunction keyhash,
int capacity,
double loadFactor,
double growthFactor) |
Creates a new hash map with a specified capacity,
load factor, and relative growth factor.
|
CharKeyOpenHashMap(CharHashFunction keyhash,
int capacity,
double loadFactor,
int growthChunk) |
Creates a new hash map with a specified capacity,
load factor, and absolute growth factor.
|