| clear() |
Removes all of the mappings from this map (optional operation). |
| containsKey(Object key) |
Returns true if this map contains a mapping for the specified key. |
| containsValue(Object value) |
Returns true if this map maps one or more keys to the specified value. |
| entry(K k, V v) |
Returns an immutable Map.Entry containing the given key and value. |
| entrySet() |
Returns a Set view of the mappings contained in this map. |
| equals(Object o) |
Compares the specified object with this map for equality. |
| get(Object key) |
Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key. |
| hashCode() |
Returns the hash code value for this map. |
| isEmpty() |
Returns true if this map contains no key-value mappings. |
| keySet() |
Returns a Set view of the keys contained in this map. |
| of() |
Returns an immutable map containing zero mappings. |
| of(K k1, V v1) |
Returns an immutable map containing a single mapping. |
| of(K k1, V v1, K k2, V v2) |
Returns an immutable map containing two mappings. |
| of(K k1, V v1, K k2, V v2, K k3, V v3) |
Returns an immutable map containing three mappings. |
| of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) |
Returns an immutable map containing four mappings. |
| of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5) |
Returns an immutable map containing five mappings. |
| of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6) |
Returns an immutable map containing six mappings. |
| of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7) |
Returns an immutable map containing seven mappings. |
| of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8) |
Returns an immutable map containing eight mappings. |
| of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, K k9, V v9) |
Returns an immutable map containing nine mappings. |
| of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4, K k5, V v5, K k6, V v6, K k7, V v7, K k8, V v8, K k9, V v9, K k10, V v10) |
Returns an immutable map containing ten mappings. |
| ofEntries(Map.Entry<? extends K,? extends V>… entries) |
Returns an immutable map containing keys and values extracted from the given entries. |
| put(K key, V value) |
Associates the specified value with the specified key in this map (optional operation). |
| putAll(Map<? extends K,? extends V> m) |
Copies all of the mappings from the specified map to this map (optional operation). |
| remove(Object key) |
Removes the mapping for a key from this map if it is present (optional operation). |
| size() |
Returns the number of key-value mappings in this map. |
| values() |
Returns a Collection view of the values contained in this map. |