A - The type of the first argument to the functionB - The type of the second argument to the functionC - The type of the third argument to the functionD - The type of the fourth argument to the functionE - The type of the fifth argument to the functionF - The type of the sixth argument to the functionG - The type of the seventh argument to the functionH - The type of the eighth argument to the functionI - The type of the ninth argument to the functionJ - The type of the tenth argument to the functionRESULT - The type of the result of the function@FunctionalInterface public interface DecaFunction<A,B,C,D,E,F,G,H,I,J,RESULT> extends AtlanticFunction<A,NonaFunction<B,C,D,E,F,G,H,I,J,RESULT>>
Function.
This is a functional interface whose functional method is apply(Object, Object, Object, Object, Object, Object, Object, Object, Object, Object).| Modifier and Type | Method and Description |
|---|---|
default <AFTER_RESULT> |
andThen(Function<? super RESULT,? extends AFTER_RESULT> after)
Returns a composed decafunction that first applies this decafunction to its input, and then applies the
after
function to the result. |
RESULT |
apply(A a,
B b,
C c,
D d,
E e,
F f,
G g,
H h,
I i,
J j)
Applies this function to the given arguments.
|
default NonaFunction<B,C,D,E,F,G,H,I,J,RESULT> |
downgrade(Supplier<A> supplier) |
downgradeRESULT apply(A a, B b, C c, D d, E e, F f, G g, H h, I i, J j) throws Throwable
a - The first function argument.b - The second function argument.c - The third function argument.d - The fourth function argument.e - The fifth function argument.f - The sixth function argument.g - The seventh function argument.h - The eighth function argument.i - The ninth function argument.j - The tenth function argument.Throwable - Any exception that the operation will throw.default <AFTER_RESULT> DecaFunction<A,B,C,D,E,F,G,H,I,J,AFTER_RESULT> andThen(Function<? super RESULT,? extends AFTER_RESULT> after)
after
function to the result.
If evaluation of either function throws an exception, it is relayed to the caller of the composed function.AFTER_RESULT - The type of output of the after function, and of the composed function.after - The function to apply after this function is applied.after functionCopyright © 2019. All rights reserved.