T1
- The first parameter type.T2
- The second parameter type.T3
- The third parameter type.T4
- The fourth parameter type.T5
- The fifth parameter type.T6
- The sixth parameter type.T7
- The seventh parameter type.T8
- The eighth parameter type.T9
- The ninth parameter type.R
- The return value.public interface Function9<T1,T2,T3,T4,T5,T6,T7,T8,T9,R>
Modifier and Type | Method and Description |
---|---|
R |
apply(T1 t1,
T2 t2,
T3 t3,
T4 t4,
T5 t5,
T6 t6,
T7 t7,
T8 t8,
T9 t9)
Applies this function to the parameters.
|
default (T1) -> (T2,T3,T4,T5,T6,T7,T8,T9) -> R |
curry()
|
default (T1,T2) -> (T3,T4,T5,T6,T7,T8,T9) -> R |
curry2()
Curries this function into a
BiFunction returning a Function7 . |
default (T1,T2,T3) -> (T4,T5,T6,T7,T8,T9) -> R |
curry3()
|
default (T1,T2,T3,T4) -> (T5,T6,T7,T8,T9) -> R |
curry4()
|
default (T1,T2,T3,T4,T5) -> (T6,T7,T8,T9) -> R |
curry5()
|
default (T1,T2,T3,T4,T5,T6) -> (T7,T8,T9) -> R |
curry6()
|
default (T1,T2,T3,T4,T5,T6,T7) -> (T8,T9) -> R |
curry7()
Curries this function into a
Function7 returning a BiFunction . |
default (T1,T2,T3,T4,T5,T6,T7,T8) -> (T9) -> R |
curry8()
|
R apply(T1 t1, T2 t2, T3 t3, T4 t4, T5 t5, T6 t6, T7 t7, T8 t8, T9 t9)
t1
- The first input value.t2
- The second input value.t3
- The third input value.t4
- The fourth input value.t5
- The fifth input value.t6
- The sixth input value.t7
- The seventh input value.t8
- The eighth input value.t9
- The ninth input value.default (T1,T2) -> (T3,T4,T5,T6,T7,T8,T9) -> R curry2()
BiFunction
returning a Function7
.default (T1,T2,T3,T4,T5,T6,T7) -> (T8,T9) -> R curry7()
Function7
returning a BiFunction
.