C E G H I J K M P R S V 

C

clear() - Method in interface java.util.Map
Removes all of the mappings from this map (optional operation).
compute(K, BiFunction<? super K, ? super V, ? extends V>) - Method in interface java.util.Map
Attempts to compute a mapping for the specified key and its current mapped value (or null if there is no current mapping).
computeIfAbsent(K, Function<? super K, ? extends V>) - Method in interface java.util.Map
If the specified key is not already associated with a value (or is mapped to null), attempts to compute its value using the given mapping function and enters it into this map unless null.
computeIfPresent(K, BiFunction<? super K, ? super V, ? extends V>) - Method in interface java.util.Map
If the value for the specified key is present and non-null, attempts to compute a new mapping given the key and its current mapped value.
containsKey(Object) - Method in interface java.util.Map
Returns true if this map contains a mapping for the specified key.
containsValue(Object) - Method in interface java.util.Map
Returns true if this map maps one or more keys to the specified value.

E

entrySet() - Method in interface java.util.Map
Returns a Set view of the mappings contained in this map.
equals(Object) - Method in interface java.util.Map.Entry
Compares the specified object with this entry for equality.
equals(Object) - Method in interface java.util.Map
Compares the specified object with this map for equality.

G

get(Object) - Method in interface java.util.Map
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
getKey() - Method in interface java.util.Map.Entry
Returns the key corresponding to this entry.
getValue() - Method in interface java.util.Map.Entry
Returns the value corresponding to this entry.

H

hashCode() - Method in interface java.util.Map.Entry
Returns the hash code value for this map entry.
hashCode() - Method in interface java.util.Map
Returns the hash code value for this map.

I

isEmpty() - Method in interface java.util.Map
Returns true if this map contains no key-value mappings.

J

java.util - package java.util
 

K

keySet() - Method in interface java.util.Map
Returns a Set view of the keys contained in this map.

M

Map<K,V> - Interface in java.util
An object that maps keys to values.
Map.Entry<K,V> - Interface in java.util
A map entry (key-value pair).
merge(K, V, BiFunction<? super V, ? super V, ? extends V>) - Method in interface java.util.Map
If the specified key is not already associated with a (non-null) value, associates it with the given value.

P

put(K, V) - Method in interface java.util.Map
Associates the specified value with the specified key in this map (optional operation).
putAll(Map<? extends K, ? extends V>) - Method in interface java.util.Map
Copies all of the mappings from the specified map to this map (optional operation).
putIfAbsent(K, V) - Method in interface java.util.Map
If the specified key is not already associated with a value, associates it with the given value and returns null, else returns the current value.

R

remove(Object) - Method in interface java.util.Map
Removes the mapping for a key from this map if it is present (optional operation).
remove(Object, Object) - Method in interface java.util.Map
Removes the entry for the specified key only if it is currently mapped to the specified value.
replace(K, V, V) - Method in interface java.util.Map
Replaces the entry for the specified key only if currently mapped to the specified value.
replace(K, V) - Method in interface java.util.Map
Replaces the entry for the specified key only if it is currently mapped to some value.

S

setValue(V) - Method in interface java.util.Map.Entry
Replaces the value corresponding to this entry with the specified value (optional operation).
size() - Method in interface java.util.Map
Returns the number of key-value mappings in this map.

V

values() - Method in interface java.util.Map
Returns a Collection view of the values contained in this map.
C E G H I J K M P R S V