Uses of Class
com.github.tadukoo.util.map.MultiMap
Packages that use MultiMap
Package
Description
Contains Map-based data structures not present in default Java.
-
Uses of MultiMap in com.github.tadukoo.util.map
Subclasses of MultiMap in com.github.tadukoo.util.mapFields in com.github.tadukoo.util.map declared as MultiMapModifier and TypeFieldDescriptionManyToManyMap.keysToValuesThe backing keys to valuesMultiMapManyToManyMap.valuesToKeysThe backing values to keysMultiMapMethods in com.github.tadukoo.util.map that return MultiMapModifier and TypeMethodDescriptionManyToManyMap.keysToValues()Returns the underlying keysToValuesMultiMapof this ManyToManyMap.ManyToManyMap.valuesToKeys()Returns the underlying valuesToKeysMultiMapof this ManyToManyMap.Methods in com.github.tadukoo.util.map with parameters of type MultiMapModifier and TypeMethodDescriptionstatic booleanChecks if the given MultiMap is blank (either null or an empty multiMap).static booleanMultiMapUtil.isNotBlank(MultiMap<?, ?> map) Checks if the given MultiMap is NOT blank (blank = either null or an empty multiMap).final voidAssociates all of the key-value mappings from the given MultiMap into this MultiMap.final voidManyToManyMap.putAllKeyValMappings(MultiMap<K, V> map) Associates all of the key-value mappings from the given MultiMap into this ManyToManyMap.final voidManyToManyMap.putAllValKeyMappings(MultiMap<V, K> map) Associates all of the value-key mappings from the given MultiMap into this ManyToManyMap.Constructors in com.github.tadukoo.util.map with parameters of type MultiMapModifierConstructorDescriptionHashManyToManyMap(MultiMap<K, V> multiMap) Creates a new HashManyToManyMap where the backing HashMultiMap is constructed with the default initial capacity (16) and the default load factor (0.75).HashMultiMap(MultiMap<K, V> multiMap) Creates a new HashMultiMap where the backing HashMap is constructed with the default initial capacity (16) and the default load factor (0.75).protectedSets the backingMultiMaps for this ManyToManyMap.protectedManyToManyMap(MultiMap<K, V> keysToValues, MultiMap<V, K> valuesToKeys, ManyToManyMap<K, V> manyToManyMap) protectedprotectedSets the backingMultiMaps for this ManyToManyMap and callsManyToManyMap.putAllKeyValMappings(Pair[])for the given key-value Pairs.protectedTreeManyToManyMap(MultiMap<K, V> multiMap) Creates a new TreeManyToManyMap where the backingTreeMultiMapuses the givenComparatorto determine the ordering of its keys.TreeMultiMap(MultiMap<K, V> multiMap) Creates a new TreeMultiMap where the backingTreeMapuses the givenComparatorto determine the ordering of its keys.