Returns true if this map maps one or more keys to the specified value. @param value value whose presence in this map is to be tested. @return true if this map maps one or more keys to the specified value.
(Object value)
| 1378 | * value. |
| 1379 | */ |
| 1380 | public boolean containsValue(Object value) |
| 1381 | { |
| 1382 | checkValue(value); |
| 1383 | return lookup(( Comparable ) value, _VALUE) != null; |
| 1384 | } |
| 1385 | |
| 1386 | /** |
| 1387 | * Returns the value to which this map maps the specified |