Returns true if this map contains a mapping for the specified key. @param key key whose presence in this map is to be tested. @return true if this map contains a mapping for the specified key. @throws ClassCastException if the key cannot be compared with the keys cu
(Object key)
| 148 | * <tt>null</tt> keys. |
| 149 | */ |
| 150 | @Override |
| 151 | public boolean containsKey(Object key) { |
| 152 | return getEntry(key) != null; |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * Returns <tt>true</tt> if this map maps one or more keys to the |