Uses of Class
org.apache.commons.collections4.map.TransformedMap
-
Packages that use TransformedMap Package Description org.apache.commons.collections4.map -
-
Uses of TransformedMap in org.apache.commons.collections4.map
Subclasses of TransformedMap in org.apache.commons.collections4.map Modifier and Type Class Description class
TransformedSortedMap<K,V>
Decorates anotherSortedMap
to transform objects that are added.Methods in org.apache.commons.collections4.map that return TransformedMap Modifier and Type Method 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.
-