-
TCustomHashMap
<
K
,
V> - Class in
com.slimjars.dist.gnu.trove.map.hash
-
An implementation of the Map interface which uses an open addressed hash table to store its contents.
-
TCustomHashMap() - Constructor for class com
.slimjars
.dist
.gnu
.trove
.map
.hash
.
TCustomHashMap
-
FOR EXTERNALIZATION ONLY!!!
-
TCustomHashMap(HashingStrategy<? super K>) - Constructor for class com
.slimjars
.dist
.gnu
.trove
.map
.hash
.
TCustomHashMap
-
Creates a new
TCustomHashMap instance with the default capacity and load factor.
-
TCustomHashMap(HashingStrategy<? super K>, int) - Constructor for class com
.slimjars
.dist
.gnu
.trove
.map
.hash
.
TCustomHashMap
-
Creates a new
TCustomHashMap instance with a prime capacity equal to or greater than
initialCapacity and with the default load factor.
-
TCustomHashMap(HashingStrategy<? super K>, int, float) - Constructor for class com
.slimjars
.dist
.gnu
.trove
.map
.hash
.
TCustomHashMap
-
Creates a new
TCustomHashMap instance with a prime capacity equal to or greater than
initialCapacity and with the specified load factor.
-
TCustomHashMap(HashingStrategy<? super K>, Map<? extends K, ? extends V>) - Constructor for class com
.slimjars
.dist
.gnu
.trove
.map
.hash
.
TCustomHashMap
-
Creates a new
TCustomHashMap instance which contains the key/value pairs in
map.
-
TCustomHashMap(HashingStrategy<? super K>, TCustomHashMap<? extends K, ? extends V>) - Constructor for class com
.slimjars
.dist
.gnu
.trove
.map
.hash
.
TCustomHashMap
-
Creates a new
TCustomHashMap instance which contains the key/value pairs in
map.
-
TCustomHashMap.EntryView
- Class in
com.slimjars.dist.gnu.trove.map.hash
-
a view onto the entries of the map.
-
TCustomHashMap.KeyView
- Class in
com.slimjars.dist.gnu.trove.map.hash
-
a view onto the keys of the map.
-
TCustomHashMap.ValueView
- Class in
com.slimjars.dist.gnu.trove.map.hash
-
a view onto the values of the map.
-
toString() - Method in class com
.slimjars
.dist
.gnu
.trove
.map
.hash
.
TCustomHashMap
-
-
transformValues(TObjectFunction<V, V>) - Method in class com
.slimjars
.dist
.gnu
.trove
.map
.hash
.
TCustomHashMap
-
Transform the values in this map using
function.