| Changed Methods |
void
clear()
|
Documentation changed from old to new. |
Clears this hashtable so that it contains no keys. |
boolean
contains(
int)
|
Documentation changed from old to new. |
Tests if some key maps into the specified value in this hashtable. |
boolean
containsKey(
int)
|
Documentation changed from old to new. |
Tests if the specified int is a key in this hashtable. |
boolean
containsValue(
int)
|
Documentation changed from old to new. |
Returns true if this HashMap maps one or more keys to this value. |
int
get(
int)
|
Documentation changed from old to new. |
Returns the value to which the specified key is mapped in this map. |
boolean
isEmpty()
|
Documentation changed from old to new. |
Tests if this hashtable maps no keys to values. |
int
put(
int,
int
)
|
Documentation changed from old to new. |
Maps the specified key to the specified value in this hashtable. |
void
rehash()
|
Documentation changed from old to new. |
Increases the capacity of and internally reorganizes this hashtable, in order to accommodate and access its entries more efficiently. |
int
remove(
int)
|
Documentation changed from old to new. |
Removes the key (and its corresponding value) from this hashtable. |
int
size()
|
Documentation changed from old to new. |
Returns the number of keys in this hashtable. |