Interface CheckedFunction3<T1,T2,T3,R>
- Type Parameters:
T1- argument 1 of the functionT2- argument 2 of the functionT3- argument 3 of the functionR- return type of the function
- All Superinterfaces:
Serializable
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents a function with three arguments.
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiondefault <V> CheckedFunction3<T1, T2, T3, V> andThen(CheckedFunction1<? super R, ? extends V> after) Returns a composed function that first applies this CheckedFunction3 to the given argument and then applies CheckedFunction1afterto the result.default CheckedFunction2<T2, T3, R> Applies this function partially to one argument.default CheckedFunction1<T3, R> Applies this function partially to two arguments.Applies this function to three arguments and returns the result.default intarity()Returns the number of function arguments.static <T1,T2, T3, R>
CheckedFunction3<T1, T2, T3, R> constant(R value) Returns a function that always returns the constant value that you give in parameter.curried()Returns a curried version of this function.default booleanChecks if this function is memoizing (= caching) computed values.lift(CheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R> partialFunction) Lifts the givenpartialFunctioninto a total function that returns anOptionresult.liftTry(CheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R> partialFunction) Lifts the givenpartialFunctioninto a total function that returns anTryresult.default CheckedFunction3<T1, T2, T3, R> memoized()Returns a memoizing version of this function, which computes the return value for given arguments only one time.static <T1,T2, T3, R>
CheckedFunction3<T1, T2, T3, R> narrow(CheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R> f) Narrows the givenCheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R>toCheckedFunction3<T1, T2, T3, R>static <T1,T2, T3, R>
CheckedFunction3<T1, T2, T3, R> of(CheckedFunction3<T1, T2, T3, R> methodReference) recover(Function<? super Throwable, ? extends Function3<? super T1, ? super T2, ? super T3, ? extends R>> recover) Return a composed function that first applies this CheckedFunction3 to the given arguments and in case of throwable try to get value fromrecoverfunction with same arguments and throwable information.default CheckedFunction3<T3, T2, T1, R> reversed()Returns a reversed version of this function.tupled()Returns a tupled version of this function.Returns an unchecked function that will sneaky throw if an exceptions occurs when applying the function.
-
Field Details
-
serialVersionUID
-
-
Method Details
-
constant
Returns a function that always returns the constant value that you give in parameter.- Type Parameters:
T1- generic parameter type 1 of the resulting functionT2- generic parameter type 2 of the resulting functionT3- generic parameter type 3 of the resulting functionR- the result type- Parameters:
value- the value to be returned- Returns:
- a function always returning the given value
-
of
Creates aCheckedFunction3based on Examples (w.l.o.g. referring to Function1):// using a lambda expression Function1<Integer, Integer> add1 = Function1.of(i -> i + 1); // using a method reference (, e.g. Integer method(Integer i) { return i + 1; }) Function1<Integer, Integer> add2 = Function1.of(this::method); // using a lambda reference Function1<Integer, Integer> add3 = Function1.of(add1::apply);Caution: Reflection loses type information of lambda references.
// type of a lambda expression Type<?, ?> type1 = add1.getType(); // (Integer) -> Integer // type of a method reference Type<?, ?> type2 = add2.getType(); // (Integer) -> Integer // type of a lambda reference Type<?, ?> type3 = add3.getType(); // (Object) -> Object- Type Parameters:
T1- 1st argumentT2- 2nd argumentT3- 3rd argumentR- return type- Parameters:
methodReference- (typically) a method reference, e.g.Type::method- Returns:
- a
CheckedFunction3
-
lift
static <T1,T2, Function3<T1, T2, T3, Option<R>> liftT3, R> (CheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R> partialFunction) Lifts the givenpartialFunctioninto a total function that returns anOptionresult.- Type Parameters:
T1- 1st argumentT2- 2nd argumentT3- 3rd argumentR- return type- Parameters:
partialFunction- a function that is not defined for all values of the domain (e.g. by throwing)- Returns:
- a function that applies arguments to the given
partialFunctionand returnsSome(result)if the function is defined for the given arguments, andNoneotherwise.
-
liftTry
static <T1,T2, Function3<T1,T3, R> T2, liftTryT3, Try<R>> (CheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R> partialFunction) Lifts the givenpartialFunctioninto a total function that returns anTryresult.- Type Parameters:
T1- 1st argumentT2- 2nd argumentT3- 3rd argumentR- return type- Parameters:
partialFunction- a function that is not defined for all values of the domain (e.g. by throwing)- Returns:
- a function that applies arguments to the given
partialFunctionand returnsSuccess(result)if the function is defined for the given arguments, andFailure(throwable)otherwise.
-
narrow
static <T1,T2, CheckedFunction3<T1,T3, R> T2, narrowT3, R> (CheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R> f) Narrows the givenCheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R>toCheckedFunction3<T1, T2, T3, R>- Type Parameters:
T1- 1st argumentT2- 2nd argumentT3- 3rd argumentR- return type- Parameters:
f- ACheckedFunction3- Returns:
- the given
finstance as narrowed typeCheckedFunction3<T1, T2, T3, R>
-
apply
Applies this function to three arguments and returns the result.- Parameters:
t1- argument 1t2- argument 2t3- argument 3- Returns:
- the result of function application
- Throws:
Throwable- if something goes wrong applying this function to the given arguments
-
apply
Applies this function partially to one argument.- Parameters:
t1- argument 1- Returns:
- a partial application of this function
-
apply
Applies this function partially to two arguments.- Parameters:
t1- argument 1t2- argument 2- Returns:
- a partial application of this function
-
arity
default int arity()Returns the number of function arguments.- Returns:
- an int value >= 0
- See Also:
-
curried
-
tupled
-
reversed
Returns a reversed version of this function. This may be useful in a recursive context.- Returns:
- a reversed function equivalent to this.
-
memoized
Returns a memoizing version of this function, which computes the return value for given arguments only one time. On subsequent calls given the same arguments the memoized value is returned.Please note that memoizing functions do not permit
nullas single argument or return value.- Returns:
- a memoizing function equivalent to this.
-
isMemoized
default boolean isMemoized()Checks if this function is memoizing (= caching) computed values.- Returns:
- true, if this function is memoizing, false otherwise
-
recover
default Function3<T1,T2, recoverT3, R> (Function<? super Throwable, ? extends Function3<? super T1, ? super T2, ? super T3, ? extends R>> recover) Return a composed function that first applies this CheckedFunction3 to the given arguments and in case of throwable try to get value fromrecoverfunction with same arguments and throwable information.- Parameters:
recover- the function applied in case of throwable- Returns:
- a function composed of this and recover
- Throws:
NullPointerException- if recover is null
-
unchecked
-
andThen
Returns a composed function that first applies this CheckedFunction3 to the given argument and then applies CheckedFunction1afterto the result.- Type Parameters:
V- return type of after- Parameters:
after- the function applied after this- Returns:
- a function composed of this and after
- Throws:
NullPointerException- if after is null
-