Uses of Class
org.apache.commons.collections4.map.MultiValueMap
-
Packages that use MultiValueMap 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.map -
-
Uses of MultiValueMap in org.apache.commons.collections4
Methods in org.apache.commons.collections4 that return MultiValueMap Modifier and Type Method Description static <K,V>
MultiValueMap<K,V>MapUtils. multiValueMap(Map<K,? super Collection<V>> map)
Deprecated.since 4.1, useMultiValuedMap
insteadstatic <K,V,C extends Collection<V>>
MultiValueMap<K,V>MapUtils. multiValueMap(Map<K,C> map, Class<C> collectionClass)
Deprecated.since 4.1, useMultiValuedMap
insteadstatic <K,V,C extends Collection<V>>
MultiValueMap<K,V>MapUtils. multiValueMap(Map<K,C> map, Factory<C> collectionFactory)
Deprecated.since 4.1, useMultiValuedMap
instead -
Uses of MultiValueMap in org.apache.commons.collections4.map
Methods in org.apache.commons.collections4.map that return MultiValueMap Modifier and Type Method Description static <K,V,C extends Collection<V>>
MultiValueMap<K,V>MultiValueMap. multiValueMap(Map<K,? super C> map, Class<C> collectionClass)
Deprecated.Creates a map which decorates the givenmap
and maps keys to collections of typecollectionClass
.static <K,V,C extends Collection<V>>
MultiValueMap<K,V>MultiValueMap. multiValueMap(Map<K,? super C> map, Factory<C> collectionFactory)
Deprecated.Creates a map which decorates the givenmap
and creates the value collections using the suppliedcollectionFactory
.static <K,V>
MultiValueMap<K,V>MultiValueMap. multiValueMap(Map<K,? super Collection<V>> map)
Deprecated.Creates a map which wraps the given map and maps keys to ArrayLists.
-