Example usage for Java java.util Map.Entry fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | containsKey(Object key) Returns true if this map contains a mapping for the specified key. |
boolean | equals(Object o) Compares the specified object with this map for equality. |
V | get(Object key) Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key. |
Class> | getClass() Returns the runtime class of this Object . |
int | hashCode() Returns the hash code value for this map. |
boolean | isEmpty() Returns true if this map contains no key-value mappings. |
Set | keySet() Returns a Set view of the keys contained in this map. |
V | put(K key, V value) Associates the specified value with the specified key in this map (optional operation). |
String | toString() Returns a string representation of the object. |
Collection | values() Returns a Collection view of the values contained in this map. |