Package org.pgpainless.util
Class MultiMap<K,V>
- java.lang.Object
-
- org.pgpainless.util.MultiMap<K,V>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method 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(MultiMap<K,V> other)
void
remove(K o, V v)
void
removeAll(K o)
int
size()
Collection<Set<V>>
values()
-
-
-
Method Detail
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
containsKey
public boolean containsKey(K o)
-
containsValue
public boolean containsValue(V o)
-
clear
public void clear()
-
values
public Collection<Set<V>> values()
-
-