Class TransformedFunction.Helper<X,T>
- java.lang.Object
-
- org.apache.commons.functor.core.composite.TransformedFunction.Helper<X,T>
-
- Type Parameters:
X- the adapted function argument type
- All Implemented Interfaces:
java.io.Serializable,Function<T>,Functor,NullaryFunctor
- Enclosing class:
- TransformedFunction<T>
private static final class TransformedFunction.Helper<X,T> extends java.lang.Object implements Function<T>, java.io.Serializable
Type-remembering helper.
-
-
Field Summary
Fields Modifier and Type Field Description private UnaryFunction<? super X,? extends T>followingThe following function.private Function<? extends X>precedingThe preceding function.private static longserialVersionUIDserialVersionUID declaration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Tevaluate()Evaluate this function.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
serialVersionUID declaration.- See Also:
- Constant Field Values
-
following
private UnaryFunction<? super X,? extends T> following
The following function.
-
-
Constructor Detail
-
Helper
private Helper(Function<? extends X> preceding, UnaryFunction<? super X,? extends T> following)
Create a new Helper.- Parameters:
preceding- Functionfollowing- UnaryFunction
-
-