Returns whether this map contains the specified key. @param key the key to search for. @return true if this map contains the specified key, false otherwise.
(Object key)
| 362 | * {@code false} otherwise. |
| 363 | */ |
| 364 | @Override |
| 365 | public boolean containsKey(Object key) { |
| 366 | Entry<K, V> m = getEntry(key); |
| 367 | return m != null; |
| 368 | } |
| 369 | |
| 370 | /** |
| 371 | * Returns whether this map contains the specified value. |
no test coverage detected