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

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

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

Methods in org.apache.commons.collections4.map that return TransformedSortedMap
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.