(Object key)
| 366 | /// @return `true` if this map contains the specified key, |
| 367 | /// `false` otherwise. |
| 368 | @Override |
| 369 | public boolean containsKey(Object key) { |
| 370 | Entry<K, V> m = getEntry(key); |
| 371 | return m != null; |
| 372 | } |
| 373 | |
| 374 | /// Returns whether this map contains the specified value. |
| 375 | /// |
no test coverage detected