public interface ObjectIntMap<K>
| Modifier and Type | Interface and Description | 
|---|---|
static interface  | 
ObjectIntMap.Entry<K>  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
clear()  | 
boolean | 
containsKey(K key)  | 
boolean | 
containsValue(int value)  | 
java.lang.Iterable<ObjectIntMap.Entry<K>> | 
entries()  | 
int | 
get(K key)  | 
boolean | 
isEmpty()  | 
java.util.Set<K> | 
keySet()  | 
int | 
put(K key,
   int value)  | 
int | 
remove(K key)  | 
int | 
size()  | 
int [] | 
values()  | 
int get(K key)
int put(K key, int value)
int remove(K key)
boolean containsKey(K key)
void clear()
java.util.Set<K> keySet()
int size()
boolean isEmpty()
int [] values()
boolean containsValue(int value)
java.lang.Iterable<ObjectIntMap.Entry<K>> entries()