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 |
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, use
MultiValuedMap instead |
static <K,V,C extends java.util.Collection<V>> |
MapUtils.multiValueMap(java.util.Map<K,C> map,
java.lang.Class<C> collectionClass) |
Deprecated.
since 4.1, use
MultiValuedMap instead |
static <K,V,C extends java.util.Collection<V>> |
MapUtils.multiValueMap(java.util.Map<K,C> map,
Factory<C> collectionFactory) |
Deprecated.
since 4.1, use
MultiValuedMap instead |
Modifier and Type | Method | Description |
---|---|---|
static <K,V,C extends java.util.Collection<V>> |
MultiValueMap.multiValueMap(java.util.Map<K,? super C> map,
java.lang.Class<C> collectionClass) |
Deprecated.
Creates a map which decorates the given
map and
maps keys to collections of type collectionClass . |
static <K,V,C extends java.util.Collection<V>> |
MultiValueMap.multiValueMap(java.util.Map<K,? super C> map,
Factory<C> collectionFactory) |
Deprecated.
Creates a map which decorates the given
map and
creates the value collections using the supplied collectionFactory . |
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.
|
Copyright © 2001-2019 - Apache Software Foundation