Package hiiragi283.lib.collection
Interface MultiMap
-
-
Method Summary
Modifier and Type Method Description abstract BooleanisEmpty()abstract BooleancontainsKey(K key)Booleancontains(K key)abstract BooleancontainsValue(V value)abstract Collection<V>get(K key)abstract Map<K, Collection<V>>asMap()abstract IntegergetSize()abstract Set<K>getKeys()abstract Collection<V>getValues()abstract Set<Pair<K, V>>getEntries()-
-
Method Detail
-
containsKey
abstract Boolean containsKey(K key)
-
containsValue
abstract Boolean containsValue(V value)
-
get
abstract Collection<V> get(K key)
-
asMap
abstract Map<K, Collection<V>> asMap()
-
getValues
abstract Collection<V> getValues()
-
getEntries
abstract Set<Pair<K, V>> getEntries()
-
-
-
-