java.util
public abstract class AbstractMap<K,V> extends Object implements Map<K,V>
Constructor Summary | |
---|---|
protected | AbstractMap() |
Method Summary | |
---|---|
void | clear() |
protected Object | clone() |
boolean | containsKey(Object key) |
boolean | containsValue(Object value) |
abstract Set<Map.Entry<K,V>> | entrySet() |
boolean | equals(Object o) |
V | get(K key) |
int | hashCode() |
boolean | isEmpty() |
Set<K> | keySet() |
V | put(K key, V value) |
<K1 extends K,V1 extends V> void | putAll(Map<K1,V1> t) |
V | remove(Object key) |
int | size() |
String | toString() |
Collection<V> | values() |