Uses of Class
org.apache.commons.collections4.map.TransformedMap

Packages that use TransformedMap
org.apache.commons.collections4.map This package contains implementations of the Map, IterableMap, OrderedMap and SortedMap interfaces. 
 

Uses of TransformedMap in org.apache.commons.collections4.map
 

Subclasses of TransformedMap in org.apache.commons.collections4.map
 class TransformedSortedMap<K,V>
          Decorates another SortedMap to transform objects that are added.
 

Methods in org.apache.commons.collections4.map that return TransformedMap
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–2013 The Apache Software Foundation. All rights reserved.