Uses of Class
org.apache.commons.functor.core.composite.CompositeUnaryFunction
-
Packages that use CompositeUnaryFunction Package Description org.apache.commons.functor.core.composite Functors composed of other functors. -
-
Uses of CompositeUnaryFunction in org.apache.commons.functor.core.composite
Fields in org.apache.commons.functor.core.composite declared as CompositeUnaryFunction Modifier and Type Field Description private CompositeUnaryFunction<? super A,java.lang.Boolean>CompositeUnaryPredicate. functionThe adapted composite function.private CompositeUnaryFunction<? super A,java.lang.Object>CompositeUnaryProcedure. functionThe adapted composite procedure.Methods in org.apache.commons.functor.core.composite that return CompositeUnaryFunction Modifier and Type Method Description static <A,T>
CompositeUnaryFunction<A,T>Composite. function(UnaryFunction<? super A,? extends T> f)Create a composite UnaryFunction.static <A,X,T>
CompositeUnaryFunction<A,T>Composite. function(UnaryFunction<? super X,? extends T> f, UnaryFunction<? super A,? extends X> g)Create a composite UnaryFunction.<P> CompositeUnaryFunction<P,T>CompositeUnaryFunction. of(UnaryFunction<? super P,? extends A> preceding)Fluently obtain a CompositeUnaryFunction that is "this function" applied to the specified preceding function.Methods in org.apache.commons.functor.core.composite with parameters of type CompositeUnaryFunction Modifier and Type Method Description booleanCompositeUnaryFunction. equals(CompositeUnaryFunction<?,?> that)Learn whether another CompositeUnaryFunction is equal to this.Constructors in org.apache.commons.functor.core.composite with parameters of type CompositeUnaryFunction Constructor Description CompositeUnaryPredicate(CompositeUnaryFunction<? super A,java.lang.Boolean> function)Create a new CompositeUnaryPredicate.CompositeUnaryProcedure(CompositeUnaryFunction<? super A,java.lang.Object> function)Create a new CompositeUnaryProcedure.
-