Uses of Class
com.github.tadukoo.util.map.ManyToManyMap
Package
Description
Contains Map-based data structures not present in default Java.
-
Uses of ManyToManyMap in com.github.tadukoo.util.map
Modifier and TypeClassDescriptionclass
HashManyToManyMap<K,
V> A ManyToManyMap class that usesHashMultiMap
as the backingMultiMap
class.class
TreeManyToManyMap<K,
V> A ManyToManyMap class that usesTreeMultiMap
as the backingMultiMap
class.Modifier and TypeMethodDescriptionstatic boolean
ManyToManyMapUtil.isBlank
(ManyToManyMap<?, ?> map) Checks if the given ManyToManyMap is blank (either null or an empty manyToManyMap).static boolean
ManyToManyMapUtil.isNotBlank
(ManyToManyMap<?, ?> map) Checks if the given ManyToManyMap is NOT blank (blank = either null or an empty manyToManyMap).final void
ManyToManyMap.putAllKeyValMappings
(ManyToManyMap<K, V> map) Associates all of the key-value mappings from the given ManyToManyMap into this ManyToManyMap.final void
ManyToManyMap.putAllValKeyMappings
(ManyToManyMap<V, K> map) Associates all of the value-key mappings from the given ManyToManyMap into this ManyToManyMap.ModifierConstructorDescriptionHashManyToManyMap
(ManyToManyMap<K, V> manyToManyMap) Creates a new HashManyToManyMap where the backing HashMultiMap is constructed with the default initial capacity (16) and the default load factor (0.75).protected
ManyToManyMap
(MultiMap<K, V> keysToValues, MultiMap<V, K> valuesToKeys, ManyToManyMap<K, V> manyToManyMap) TreeManyToManyMap
(ManyToManyMap<K, V> manyToManyMap) Creates a new TreeManyToManyMap where the backing TreeMultiMap uses the natural ordering of its keys.