Uses of Class
org.apache.commons.functor.core.composite.CompositeUnaryFunction
Packages that use CompositeUnaryFunction
-
Uses of CompositeUnaryFunction in org.apache.commons.functor.core.composite
Fields in org.apache.commons.functor.core.composite declared as CompositeUnaryFunctionModifier and TypeFieldDescriptionprivate final CompositeUnaryFunction<? super A, Boolean> CompositeUnaryPredicate.functionThe adapted composite function.private final CompositeUnaryFunction<? super A, Object> CompositeUnaryProcedure.functionThe adapted composite procedure.Methods in org.apache.commons.functor.core.composite that return CompositeUnaryFunctionModifier and TypeMethodDescriptionstatic <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.final <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 CompositeUnaryFunctionModifier and TypeMethodDescriptionfinal booleanCompositeUnaryFunction.equals(CompositeUnaryFunction<?, ?> that) Learn whether another CompositeUnaryFunction is equal to this.Constructors in org.apache.commons.functor.core.composite with parameters of type CompositeUnaryFunctionModifierConstructorDescriptionprivateCompositeUnaryPredicate(CompositeUnaryFunction<? super A, Boolean> function) Create a new CompositeUnaryPredicate.privateCompositeUnaryProcedure(CompositeUnaryFunction<? super A, Object> function) Create a new CompositeUnaryProcedure.