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(java.util.Map<K,? super java.util.Collection<V>> map)Deprecated.since 4.1, useMultiValuedMapinsteadstatic <K,V,C extends java.util.Collection<V>>
MultiValueMap<K,V>MapUtils. multiValueMap(java.util.Map<K,C> map, java.lang.Class<C> collectionClass)Deprecated.since 4.1, useMultiValuedMapinsteadstatic <K,V,C extends java.util.Collection<V>>
MultiValueMap<K,V>MapUtils. multiValueMap(java.util.Map<K,C> map, Factory<C> collectionFactory)Deprecated.since 4.1, useMultiValuedMapinstead -
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 java.util.Collection<V>>
MultiValueMap<K,V>MultiValueMap. multiValueMap(java.util.Map<K,? super C> map, java.lang.Class<C> collectionClass)Deprecated.Creates a map which decorates the givenmapand maps keys to collections of typecollectionClass.static <K,V,C extends java.util.Collection<V>>
MultiValueMap<K,V>MultiValueMap. multiValueMap(java.util.Map<K,? super C> map, Factory<C> collectionFactory)Deprecated.Creates a map which decorates the givenmapand creates the value collections using the suppliedcollectionFactory.static <K,V>
MultiValueMap<K,V>MultiValueMap. multiValueMap(java.util.Map<K,? super java.util.Collection<V>> map)Deprecated.Creates a map which wraps the given map and maps keys to ArrayLists.
-