Returns the value to which the specified key is mapped, or null if this map contains no mapping for the key.
(K key)
| 17 | /** Returns the value to which the specified key is mapped, or null if this |
| 18 | * map contains no mapping for the key. */ |
| 19 | V get(K key); |
| 20 | |
| 21 | /** Returns whether this map contains a mapping for the specified key. */ |
| 22 | boolean containsKey(K key); |