Returns the value of the mapping with the specified key. @param key the key. @return the value of the mapping with the specified key, or null if no mapping for the specified key is found.
(Object key)
| 422 | * if no mapping for the specified key is found. |
| 423 | */ |
| 424 | @Override |
| 425 | public V get(Object key) { |
| 426 | Entry<K, V> m = getEntry(key); |
| 427 | if (m != null) { |
| 428 | return m.value; |
| 429 | } |
| 430 | return null; |
| 431 | } |
| 432 | |
| 433 | final Entry<K, V> getEntry(Object key) { |
| 434 | Entry<K, V> m; |