Uses of Interface
org.apache.commons.collections4.MultiMap
Packages that use MultiMap
Package
Description
This package contains the interfaces and utilities shared across all the subpackages of this component.
This package contains implementations of the
Collection
interface.-
Uses of MultiMap in org.apache.commons.collections4
Methods in org.apache.commons.collections4 with parameters of type MultiMapModifier 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
Constructors in org.apache.commons.collections4.collection with parameters of type MultiMapModifierConstructorDescriptionIndexedCollection
(Collection<C> coll, Transformer<C, K> keyTransformer, MultiMap<K, C> map, boolean uniqueIndex) Create aIndexedCollection
. -
Uses of MultiMap in org.apache.commons.collections4.map
Classes in org.apache.commons.collections4.map that implement MultiMap
MultiValuedMap
instead