Package | Description |
---|---|
org.apache.commons.collections4.map |
Modifier and Type | Method and Description |
---|---|
static <K,V> TransformedSortedMap<K,V> |
TransformedSortedMap.transformedSortedMap(SortedMap<K,V> map,
Transformer<? super K,? extends K> keyTransformer,
Transformer<? super V,? extends V> valueTransformer)
Factory method to create a transforming sorted map that will transform
existing contents of the specified map.
|
static <K,V> TransformedSortedMap<K,V> |
TransformedSortedMap.transformingSortedMap(SortedMap<K,V> map,
Transformer<? super K,? extends K> keyTransformer,
Transformer<? super V,? extends V> valueTransformer)
Factory method to create a transforming sorted map.
|
Copyright © 2001–2013 The Apache Software Foundation. All rights reserved.