Uses of Interface
org.apache.commons.collections4.MultiMap
-
Packages that use MultiMap Package Description org.apache.commons.collections4 This package contains the interfaces and utilities shared across all the subpackages of this component.org.apache.commons.collections4.collection This package contains implementations of theCollection
interface.org.apache.commons.collections4.map -
-
Uses of MultiMap in org.apache.commons.collections4
Methods in org.apache.commons.collections4 with parameters of type MultiMap Modifier and Type Method Description static <K,V,E>
voidMapUtils. 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>
voidMapUtils. 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 MultiMap Constructor Description IndexedCollection(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 Modifier and Type Class Description class
MultiValueMap<K,V>
Deprecated.since 4.1, useMultiValuedMap
instead
-