Uses of Class
org.apache.commons.collections4.map.LazyMap
-
Packages that use LazyMap Package Description org.apache.commons.collections4.map -
-
Uses of LazyMap in org.apache.commons.collections4.map
Subclasses of LazyMap in org.apache.commons.collections4.map Modifier and Type Class Description class
LazySortedMap<K,V>
Decorates anotherSortedMap
to create objects in the map on demand.Methods in org.apache.commons.collections4.map that return LazyMap Modifier and Type Method Description static <K,V>
LazyMap<K,V>LazyMap. lazyMap(Map<K,V> map, Factory<? extends V> factory)
Factory method to create a lazily instantiated map.static <V,K>
LazyMap<K,V>LazyMap. lazyMap(Map<K,V> map, Transformer<? super K,? extends V> factory)
Factory method to create a lazily instantiated map.
-