juggernaut.cef
public interface MultiMap<K,V> extends Map<K,Set<V>>
| Method Summary | |
|---|---|
| void | clear() |
| boolean | containsKey(K key) |
| boolean | containsValue(V value) |
| Set<Entry<K,Set<V>>> | entrySet() |
| Set<V> | get(Object key) |
| boolean | isEmpty() |
| Set<K> | keySet() |
| void | put(K key, V value) |
| void | put(K key, Collection<V> values) |
| void | putAll(MultiMap<? extends K,? extends V> mm) |
| Set<V> | remove(Object key) |
| int | size() |
| Collection<Set<V>> | values() |