Method |
Description |
clear( )
|
Removes all objects from the specified hashtable object. |
clone( )
|
Returns a copy of the specified hashtable object. |
contains( )
|
Returns whether the given object is contained in the specified hashtable object. |
containsKey( )
|
Returns whether the given object is a key in the specified hashtable. |
elements( )
|
Returns an enumeration object of the elements in the specified hashtable object. |
get( )
|
Returns the object mapped to the given key object in the specified hashtable object. |
Hashtable( )
|
Returns a new hashtable object of specified capacity and load factor. |
isEmpty( )
|
Returns whether the specified hashtable object contains no objects. |
keys( )
|
Returns an enumeration object of the keys in the specified hashtable object. |
put( )
|
Maps the given key object to the object specified in the specified hashtable object and returns the previous object of the given key object in the specified hashtable object. |
remove( )
|
Removes the given key object and its corresponding object from the specified hashtable object and returns the object at the given key object in the specified hashtable object. |
size( )
|
Returns the number of key objects in the specified hashtable object. |
toString( )
|
Returns a string representation of the specified hashtable object. |