Uses of Class
com.github.tadukoo.util.map.ManyToManyMap
Packages that use ManyToManyMap
Package
Description
Contains Map-based data structures not present in default Java.
-
Uses of ManyToManyMap in com.github.tadukoo.util.map
Subclasses of ManyToManyMap in com.github.tadukoo.util.mapModifier and TypeClassDescriptionclassHashManyToManyMap<K,V> A ManyToManyMap class that usesHashMultiMapas the backingMultiMapclass.classTreeManyToManyMap<K,V> A ManyToManyMap class that usesTreeMultiMapas the backingMultiMapclass.Methods in com.github.tadukoo.util.map with parameters of type ManyToManyMapModifier and TypeMethodDescriptionstatic booleanManyToManyMapUtil.isBlank(ManyToManyMap<?, ?> map) Checks if the given ManyToManyMap is blank (either null or an empty manyToManyMap).static booleanManyToManyMapUtil.isNotBlank(ManyToManyMap<?, ?> map) Checks if the given ManyToManyMap is NOT blank (blank = either null or an empty manyToManyMap).final voidManyToManyMap.putAllKeyValMappings(ManyToManyMap<K, V> map) Associates all of the key-value mappings from the given ManyToManyMap into this ManyToManyMap.final voidManyToManyMap.putAllValKeyMappings(ManyToManyMap<V, K> map) Associates all of the value-key mappings from the given ManyToManyMap into this ManyToManyMap.Constructors in com.github.tadukoo.util.map with parameters of type ManyToManyMapModifierConstructorDescriptionHashManyToManyMap(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).protectedManyToManyMap(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.