K
- The common type of the keysV
- The common type of the valuespublic interface INumberedMap<K extends Numberable,V>
Modifier and Type | Method and Description |
---|---|
V |
get(K key)
Returns the value associated with a given key.
|
Iterator<K> |
keyIterator()
Returns an iterator over the keys with non-null values.
|
boolean |
put(K key,
V value)
Associates a value with a key.
|
void |
remove(K key)
Removes the given key from the map
|
boolean put(K key, V value)
key
- The keyvalue
- The valueV get(K key)
key
- The keyIterator<K> keyIterator()
void remove(K key)
key
- The key to be removedCopyright © 2021 Soot OSS. All rights reserved.