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)
| 455 | * if no mapping for the specified key is found. |
| 456 | */ |
| 457 | @Override |
| 458 | public V get(Object key) { |
| 459 | Entry<K, V> m = getEntry(key); |
| 460 | if (m != null) { |
| 461 | return m.value; |
| 462 | } |
| 463 | return null; |
| 464 | } |
| 465 | |
| 466 | final Entry<K, V> getEntry(Object key) { |
| 467 | Entry<K, V> m; |