-
public class CustomBiMultiMap<K, V>
-
-
Method Summary
Modifier and Type Method Description synchronized voidput(K key, V value)synchronized voidput(Iterable<out K> keys, V value)synchronized voidput(K key, Iterable<out V> values)synchronized voidremove(K key, V value)synchronized voidremoveKey(K key)synchronized voidremoveValue(V value)synchronized Collection<V>getValue(K key)synchronized Collection<K>getKey(V value)booleancontainsKey(K key)booleancontainsValue(V value)Set<K>keySet()Set<K>keySetCopy()Set<V>valueSet()Set<V>valueSetCopy()voidclear()synchronized StringtoString()booleanisEmpty()-
-
Method Detail
-
removeValue
synchronized void removeValue(V value)
-
getValue
synchronized Collection<V> getValue(K key)
-
getKey
synchronized Collection<K> getKey(V value)
-
containsKey
boolean containsKey(K key)
-
containsValue
boolean containsValue(V value)
-
keySetCopy
Set<K> keySetCopy()
-
valueSetCopy
Set<V> valueSetCopy()
-
clear
void clear()
-
isEmpty
boolean isEmpty()
-
-
-
-