Package hiiragi283.lib.collection
Interface MutableMultiMap
-
-
Method Summary
Modifier and Type Method Description abstract Collection<V>get(K key)abstract Map<K, Collection<V>>asMap()abstract Booleanput(K key, V value)Unitset(K key, V value)abstract BooleanputAll(K key, Iterable<V> values)abstract Collection<V>removeAll(K key)abstract Unitclear()abstract IntegergetSize()abstract Set<K>getKeys()abstract Collection<V>getValues()abstract Set<Pair<K, V>>getEntries()-
-
Method Detail
-
get
abstract Collection<V> get(K key)
-
asMap
abstract Map<K, Collection<V>> asMap()
-
removeAll
abstract Collection<V> removeAll(K key)
-
getValues
abstract Collection<V> getValues()
-
getEntries
abstract Set<Pair<K, V>> getEntries()
-
-
-
-