Returns the value to which this map maps the specified key. Returns null if the map contains no mapping for this key. A return value of null does not necessarily indicate that the map contains no mapping for the key; it's also possible that the map explicitly maps the key
(Object key)
| 255 | * @see #containsKey(Object) |
| 256 | */ |
| 257 | @Override |
| 258 | public V get(Object key) { |
| 259 | Entry<K,V> p = getEntry(key); |
| 260 | return p==null ? null : p.value; |
| 261 | } |
| 262 | |
| 263 | /** |
| 264 | * Returns the comparator used to order this map, or <tt>null</tt> if this |