Package | Description |
---|---|
org.apache.commons.collections4.map |
Modifier and Type | Class and Description |
---|---|
class |
TransformedSortedMap<K,V>
Decorates another
SortedMap to transform objects that are added. |
Modifier and Type | Method and Description |
---|---|
static <K,V> TransformedMap<K,V> |
TransformedMap.transformedMap(Map<K,V> map,
Transformer<? super K,? extends K> keyTransformer,
Transformer<? super V,? extends V> valueTransformer)
Factory method to create a transforming map that will transform
existing contents of the specified map.
|
static <K,V> TransformedMap<K,V> |
TransformedMap.transformingMap(Map<K,V> map,
Transformer<? super K,? extends K> keyTransformer,
Transformer<? super V,? extends V> valueTransformer)
Factory method to create a transforming map.
|
Copyright © 2001–2018 The Apache Software Foundation. All rights reserved.