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 voidclear()booleancontainsKey(K o)booleancontainsValue(V o)Set<Map.Entry<K,Set<V>>>entrySet()booleanequals(Object o)Set<V>get(K o)inthashCode()booleanisEmpty()Set<K>keySet()voidput(K k, Set<V> vs)voidput(K k, V v)voidputAll(MultiMap<K,V> other)voidremove(K o, V v)voidremoveAll(K o)intsize()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()
-
-