|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use MultiValueMap | |
---|---|
org.apache.commons.collections4 | This package contains the interfaces and utilities shared across all the subpackages of this component. |
org.apache.commons.collections4.map | This package contains implementations of the Map ,
IterableMap ,
OrderedMap and
SortedMap interfaces. |
Uses of MultiValueMap in org.apache.commons.collections4 |
---|
Methods in org.apache.commons.collections4 that return MultiValueMap | ||
---|---|---|
static
|
MapUtils.multiValueMap(Map<K,? super Collection<V>> map)
Creates a mult-value map backed by the given map which returns collections of type ArrayList. |
|
static
|
MapUtils.multiValueMap(Map<K,C> map,
Class<C> collectionClass)
Creates a multi-value map backed by the given map which returns collections of the specified type. |
|
static
|
MapUtils.multiValueMap(Map<K,C> map,
Factory<C> collectionFactory)
Creates a multi-value map backed by the given map which returns collections created by the specified collection factory. |
Uses of MultiValueMap in org.apache.commons.collections4.map |
---|
Methods in org.apache.commons.collections4.map that return MultiValueMap | ||
---|---|---|
static
|
MultiValueMap.multiValueMap(Map<K,? super C> map,
Class<C> collectionClass)
Creates a map which decorates the given map and
maps keys to collections of type collectionClass . |
|
static
|
MultiValueMap.multiValueMap(Map<K,? super C> map,
Factory<C> collectionFactory)
Creates a map which decorates the given map and
creates the value collections using the supplied collectionFactory . |
|
static
|
MultiValueMap.multiValueMap(Map<K,? super Collection<V>> map)
Creates a map which wraps the given map and maps keys to ArrayLists. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |