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 and Description |
---|---|
static <K,V> MultiValueMap<K,V> |
MapUtils.multiValueMap(Map<K,? super Collection<V>> map)
Deprecated.
since 4.1, use
MultiValuedMap instead |
static <K,V,C extends Collection<V>> |
MapUtils.multiValueMap(Map<K,C> map,
Class<C> collectionClass)
Deprecated.
since 4.1, use
MultiValuedMap instead |
static <K,V,C extends Collection<V>> |
MapUtils.multiValueMap(Map<K,C> map,
Factory<C> collectionFactory)
Deprecated.
since 4.1, use
MultiValuedMap instead |
Modifier and Type | Method and Description |
---|---|
static <K,V,C extends Collection<V>> |
MultiValueMap.multiValueMap(Map<K,? super C> map,
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 Collection<V>> |
MultiValueMap.multiValueMap(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(Map<K,? super Collection<V>> map)
Deprecated.
Creates a map which wraps the given map and
maps keys to ArrayLists.
|
Copyright © 2001–2018 The Apache Software Foundation. All rights reserved.