Uses of Interface
org.omnaest.utils.structure.collection.ListUtils.ElementTransformer

Packages that use ListUtils.ElementTransformer
org.omnaest.utils.structure.collection   
 

Uses of ListUtils.ElementTransformer in org.omnaest.utils.structure.collection
 

Classes in org.omnaest.utils.structure.collection that implement ListUtils.ElementTransformer
static class ListUtils.ElementTransformerIdentitiyCast<FROM,TO>
          Simple ListUtils.ElementTransformer implementation which casts the given object and returns it.
 

Methods in org.omnaest.utils.structure.collection with parameters of type ListUtils.ElementTransformer
static
<FROM,TO> List<TO>
ListUtils.transform(Collection<FROM> collection, ListUtils.ElementTransformer<FROM,TO> elementTransformer)
          Transforms a given Collection instance from one generic type into the other using a given ListUtils.ElementTransformer.
static
<FROM,TO> List<TO>
ListUtils.transform(Collection<FROM> collection, ListUtils.ElementTransformer<FROM,TO> elementTransformer, boolean eliminateNullValues)
          Transforms a given Collection instance from one generic type into the other using a given ListUtils.ElementTransformer.
static
<TO,FROM> Collection<TO>
CollectionUtils.transformCollection(Collection<FROM> collectionFrom, ListUtils.ElementTransformer<FROM,TO> elementTransformer)
          Converts a given Collection into another Collection with other element types using an ListUtils.ElementTransformer.
static
<TO,FROM> Collection<TO>
CollectionUtils.transformCollectionExcludingNullElements(Collection<FROM> collectionFrom, ListUtils.ElementTransformer<FROM,TO> elementTransformer)
          Converts a given Collection into another Collection with other element types, whereby all elements which convert to null will not be inserted into the target Collection.
static
<FROM,TO> List<TO>
ListUtils.transformListExcludingNullElements(Collection<FROM> collection, ListUtils.ElementTransformer<FROM,TO> elementTransformer)
          Transforms a given Collection instance from one generic type into the other using a given ListUtils.ElementTransformer.
 



Copyright © 2011. All Rights Reserved.