public final class TransformationUtils extends Object
| Modifier and Type | Class and Description |
|---|---|
static interface |
TransformationUtils.Function<F,T> |
| Constructor and Description |
|---|
TransformationUtils() |
| Modifier and Type | Method and Description |
|---|---|
static <F,T> List<T> |
transform(TransformationUtils.Function<? super F,? extends T> function,
Collection<F> fromCollection)
Returns a list that applies
function to each element of fromCollection. |
static <F,T> List<T> |
transform(TransformationUtils.Function<? super F,? extends T> function,
F... inputElements)
Returns a list that applies
function to each element of inputElements. |
public static <F,T> List<T> transform(TransformationUtils.Function<? super F,? extends T> function, Collection<F> fromCollection)
function to each element of fromCollection.IllegalArgumentException - in case of a null argument@SafeVarargs public static <F,T> List<T> transform(TransformationUtils.Function<? super F,? extends T> function, F... inputElements)
function to each element of inputElements.Copyright © 2008-2015 Seam Framework. All Rights Reserved.