Uses of Class
org.apache.commons.collections4.map.MultiValueMap
Package
Description
Interfaces and utilities shared across all packages.
-
Uses of MultiValueMap in org.apache.commons.collections4
Modifier and TypeMethodDescriptionstatic <K,
V> MultiValueMap<K, V> MapUtils.multiValueMap
(Map<K, ? super Collection<V>> map) Deprecated.static <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
Modifier and TypeMethodDescriptionstatic <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.
MultiValuedMap
instead