Searches this Hashtable for the specified value. @param value the object to search for. @return true if value is a value of this Hashtable, false otherwise.
(Object value)
| 382 | * {@code Hashtable}, {@code false} otherwise. |
| 383 | */ |
| 384 | public boolean containsValue(Object value) { |
| 385 | return contains(value); |
| 386 | } |
| 387 | |
| 388 | /** |
| 389 | * Returns an enumeration on the values of this {@code Hashtable}. The |