public interface IntObjectMap<V>
Modifier and Type | Interface and Description |
---|---|
static interface |
IntObjectMap.Entry<V> |
Modifier and Type | Method and Description |
---|---|
void |
clear() |
boolean |
containsKey(int key) |
boolean |
containsValue(V value) |
java.util.Set<IntObjectMap.Entry<V>> |
entrySet() |
V |
get(int key) |
boolean |
isEmpty() |
int [] |
keys() |
V |
put(int key,
V value) |
V |
remove(int key) |
int |
size() |
java.util.Collection<V> |
values() |
V get(int key)
V remove(int key)
boolean containsKey(int key)
void clear()
int [] keys()
int size()
boolean isEmpty()
java.util.Collection<V> values()
boolean containsValue(V value)
java.util.Set<IntObjectMap.Entry<V>> entrySet()