Returns the value to which this map maps the specified key. Returns null if the map contains no mapping for this key. @param key key whose associated value is to be returned. @return the value to which this map maps the specified key, or null if the map contains no mapping for this key. @
(Object key)
| 1397 | * @exception NullPointerException if the key is null |
| 1398 | */ |
| 1399 | public Object get(Object key) |
| 1400 | throws ClassCastException, NullPointerException |
| 1401 | { |
| 1402 | return doGet(( Comparable ) key, _KEY); |
| 1403 | } |
| 1404 | |
| 1405 | /** |
| 1406 | * Associates the specified value with the specified key in this |