C  E  F  G  H  I  K  P  R  S  T  V  W  _ 

C

clear() - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
Empties the map.
com.slimjars.dist.gnu.trove.map.hash - package com.slimjars.dist.gnu.trove.map.hash
 
containsElement(Map.Entry<K, V>) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.EntryView
 
containsElement(K) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.KeyView
 
containsElement(V) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.ValueView
 
containsKey(Object) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
checks for the present of key in the keys of the map.
containsValue(Object) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
checks for the presence of val in the values of the map.

E

entrySet() - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
Returns a Set view on the entries of the map.
EntryView() - Constructor for class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.EntryView
 
equals(Object) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
Compares this map with another map for equality of their stored entries.

F

forEachEntry(TObjectObjectProcedure<? super K, ? super V>) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
Executes procedure for each key/value entry in the map.
forEachKey(TObjectProcedure<? super K>) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
Executes procedure for each key in the map.
forEachValue(TObjectProcedure<? super V>) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
Executes procedure for each value in the map.

G

get(Object) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
retrieves the value for key

H

hashCode() - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
 

I

iterator() - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.EntryView
 
iterator() - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.KeyView
 
iterator() - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.ValueView
 

K

keyForEntry(Map.Entry<K, V>) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.EntryView
 
keySet() - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
returns a Set view on the keys of the map.
KeyView() - Constructor for class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.KeyView
 

P

put(K, V) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
Inserts a key/value pair into the map.
putAll(Map<? extends K, ? extends V>) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
copies the key/value mappings in map into this map.
putIfAbsent(K, V) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
Inserts a key/value pair into the map if the specified key is not already associated with a value.

R

readExternal(ObjectInput) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
 
rehash(int) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
rehashes the map to the new capacity.
remove(Object) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
Deletes a key/value pair from the map.
removeAt(int) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
removes the mapping at index from the map.
removeElement(Map.Entry<K, V>) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.EntryView
 
removeElement(K) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.KeyView
 
removeElement(V) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.ValueView
 
retainEntries(TObjectObjectProcedure<? super K, ? super V>) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
Retains only those entries in the map for which the procedure returns a true value.

S

setUp(int) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
initialize the value array of the map.

T

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.

V

valueForEntry(Map.Entry<K, V>) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.EntryView
 
values() - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
Returns a view on the values of the map.
ValueView() - Constructor for class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap.ValueView
 

W

writeExternal(ObjectOutput) - Method in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
 

_

_values - Variable in class com .slimjars .dist .gnu .trove .map .hash . TCustomHashMap
the values of the map
C  E  F  G  H  I  K  P  R  S  T  V  W  _