IntToIntArrayMap, IntToIntHashMappublic interface IntToIntMap
| Modifier and Type | Method | Description |
|---|---|---|
void |
clear() |
Clear the map.
|
boolean |
find(int key) |
Finds a key in the map.
|
int |
get(int key) |
Gets the value for this key.
|
int |
getDefaultValue() |
Get the default value used to indicate an unused entry
|
IntIterator |
keyIterator() |
Get an iterator over the integer key values held in the hash map
|
void |
put(int key,
int value) |
Adds a key-value pair to the map.
|
boolean |
remove(int key) |
Removes a key from the map.
|
void |
setDefaultValue(int defaultValue) |
Set the value to be returned to indicate an unused entry
|
int |
size() |
Gets the size of the map.
|
void setDefaultValue(int defaultValue)
defaultValue - the value to be returned by get(int) if no entry
exists for the supplied keyint getDefaultValue()
get(int) if no entry
exists for the supplied keyvoid clear()
boolean find(int key)
key - Keyint get(int key)
key - Keyint size()
boolean remove(int key)
key - Key to removevoid put(int key,
int value)
key - Keyvalue - ValueIntIterator keyIterator()