Removes the mapping for this value from this map if present @param value value whose mapping is to be removed from the map. @return previous key associated with specified value, or null if there was no mapping for value.
(Object value)
| 165 | * if there was no mapping for value. |
| 166 | */ |
| 167 | public Object removeValue(Object value) |
| 168 | { |
| 169 | return doRemove(( Comparable ) value, _VALUE); |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Returns a set view of the mappings contained in this map. Each |