public class IDMap<K,V> extends Object implements Map<K,V>
Constructor and Description |
---|
IDMap()
Erzeugt eine neue IDMap.
|
Modifier and Type | Method and Description |
---|---|
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set<Map.Entry<K,V>> |
entrySet() |
V |
get(Object key) |
HashMap<K,V> |
getCopy()
Liefert eine Kopie der Map als
HashMap . |
boolean |
isEmpty() |
Set<K> |
keySet() |
V |
put(K key,
V value) |
void |
putAll(Map<? extends K,? extends V> t) |
V |
remove(Object key) |
int |
size() |
Collection<V> |
values() |