Uses of Interface
org.apache.commons.collections4.MultiMap
Package
Description
Interfaces and utilities shared across all packages.
Implementations of the
Collection
interface.-
Uses of MultiMap in org.apache.commons.collections4
Modifier and TypeMethodDescriptionstatic <K,
V, E> void MapUtils.populateMap
(MultiMap<K, V> map, Iterable<? extends E> elements, Transformer<E, K> keyTransformer, Transformer<E, V> valueTransformer) Populates a MultiMap using the suppliedTransformer
s to transform the elements into keys and values.static <K,
V> void MapUtils.populateMap
(MultiMap<K, V> map, Iterable<? extends V> elements, Transformer<V, K> keyTransformer) Populates a MultiMap using the suppliedTransformer
to transform the elements into keys, using the unaltered element as the value in theMultiMap
. -
Uses of MultiMap in org.apache.commons.collections4.collection
ModifierConstructorDescriptionIndexedCollection
(Collection<C> coll, Transformer<C, K> keyTransformer, MultiMap<K, C> map, boolean uniqueIndex) Create aIndexedCollection
. -
Uses of MultiMap in org.apache.commons.collections4.map
MultiValuedMap
instead