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)
| 342 | * {@code Hashtable}, {@code false} otherwise. |
| 343 | */ |
| 344 | public boolean containsValue(Object value) { |
| 345 | return contains(value); |
| 346 | } |
| 347 | |
| 348 | /** |
| 349 | * Returns an enumeration on the values of this {@code Hashtable}. The |