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. @exception ClassCastException if the key is of an inappropriate ty
(Object key)
| 1362 | * @exception NullPointerException if the key is null |
| 1363 | */ |
| 1364 | public boolean containsKey(Object key) |
| 1365 | throws ClassCastException, NullPointerException |
| 1366 | { |
| 1367 | checkKey(key); |
| 1368 | return lookup(( Comparable ) key, _KEY) != null; |
| 1369 | } |
| 1370 | |
| 1371 | /** |
| 1372 | * Returns true if this map maps one or more keys to the |