Constructor and Description |
---|
MultiMap() |
MultiMap(Map<K,Set<V>> content) |
MultiMap(MultiMap<K,V> other) |
Modifier and Type | Method and Description |
---|---|
void |
clear() |
boolean |
containsKey(K o) |
boolean |
containsValue(V o) |
Set<Map.Entry<K,Set<V>>> |
entrySet() |
boolean |
equals(Object o) |
Set<V> |
get(K o) |
int |
hashCode() |
boolean |
isEmpty() |
Set<K> |
keySet() |
void |
put(K k,
Set<V> vs) |
void |
put(K k,
V v) |
void |
putAll(Map<? extends K,? extends Set<V>> _map) |
void |
remove(K o) |
int |
size() |
Collection<Set<V>> |
values() |
public MultiMap()
public int size()
public boolean isEmpty()
public boolean containsKey(K o)
public boolean containsValue(V o)
public void clear()
public Collection<Set<V>> values()