Uses of Interface
org.apache.commons.chain.web.CheckedFunction
Package
Description
Basis for specialized
Context
implementations suitable for use
in web applications, and generic Command
implementations useful
across web application environments.-
Uses of CheckedFunction in org.apache.commons.chain.web
Modifier and TypeMethodDescriptiondefault <V> CheckedFunction
<T, V, E> CheckedFunction.andThen
(CheckedFunction<? super R, ? extends V, E> after) Returns a composedCheckedFunction
that first applies this function to its input, and then applies theafter
function to the result.default <V> CheckedFunction
<V, R, E> CheckedFunction.compose
(CheckedFunction<? super V, ? extends T, E> before) Returns a composedCheckedFunction
that first applies thebefore
function to its input, and then applies this function to the result.static <T,
E extends Throwable>
CheckedFunction<T, T, E> CheckedFunction.identity()
Returns a function that always returns its input argument.Modifier and TypeMethodDescriptiondefault <V> CheckedFunction
<T, V, E> CheckedFunction.andThen
(CheckedFunction<? super R, ? extends V, E> after) Returns a composedCheckedFunction
that first applies this function to its input, and then applies theafter
function to the result.default <V> CheckedFunction
<V, R, E> CheckedFunction.compose
(CheckedFunction<? super V, ? extends T, E> before) Returns a composedCheckedFunction
that first applies thebefore
function to its input, and then applies this function to the result.