Uses of Interface
lumis.util.collections.Transformer
-
Packages that use Transformer Package Description lumis.util.collections -
-
Uses of Transformer in lumis.util.collections
Methods in lumis.util.collections with parameters of type Transformer Modifier and Type Method Description static <From,To>
Collection<To>Collections. transform(Collection<From> original, Transformer<From,To> transformer)
Returns a new collection using the given transformer to transform the items.static <From,To>
List<To>Lists. transform(List<From> list, Transformer<From,To> transformer)
Returns a newList
using the given transformer to transform the original elements into the new ones.
-