T1 - Type of first input parameterT2 - Type of second input parameterT3 - Type of third input parameterT4 - Type of fourth input parameterT5 - Type of fifth input parameter@FunctionalInterface
public interface QuintConsumer<T1,T2,T3,T4,T5>
Consumer.| Modifier and Type | Method and Description |
|---|---|
void |
accept(T1 a,
T2 b,
T3 c,
T4 d,
T5 e)
Performs operation with input parameters
|
default java.util.function.Function<T2,java.util.function.Function<T3,java.util.function.Function<T4,java.util.function.Consumer<T5>>>> |
apply(T1 s)
Partially apply the first input parameter to this QuintConsumer
|
default java.util.function.Function<T3,java.util.function.Function<T4,java.util.function.Consumer<T5>>> |
apply(T1 s,
T2 s2)
Partially apply the first and second input parameters to this QuintConsumer
|
default java.util.function.Function<T4,java.util.function.Consumer<T5>> |
apply(T1 s,
T2 s2,
T3 s3)
Partially apply the first, second and third input parameters to this QuintConsumer
|
default java.util.function.Consumer<T5> |
apply(T1 s,
T2 s2,
T3 s3,
T4 s4)
Partially apply the first, second, third and fourth input parameters to this QuintConsumer
|
default org.jooq.lambda.function.Consumer5<T1,T2,T3,T4,T5> |
consumer5() |
static <S1,S2,S3,S4,S5> |
fromConsumer3(org.jooq.lambda.function.Consumer5<S1,S2,S3,S4,S5> c5)
Create a cyclops-react QuintConsumer from a jOOλ Consumer5
|
static <S1,S2,S3,S4,S5> QuintConsumer<S1,S2,S3,S4,S5> fromConsumer3(org.jooq.lambda.function.Consumer5<S1,S2,S3,S4,S5> c5)
c4 - jOOλ Consumer5void accept(T1 a, T2 b, T3 c, T4 d, T5 e)
a - the first input parameterb - the second input parameterc - the third input parameterd - the fourth input parametere - the fifth input parameterdefault org.jooq.lambda.function.Consumer5<T1,T2,T3,T4,T5> consumer5()
default java.util.function.Function<T2,java.util.function.Function<T3,java.util.function.Function<T4,java.util.function.Consumer<T5>>>> apply(T1 s)
s - the first input parameterdefault java.util.function.Function<T3,java.util.function.Function<T4,java.util.function.Consumer<T5>>> apply(T1 s, T2 s2)
s - the first input parameters2 - the second input parameterdefault java.util.function.Function<T4,java.util.function.Consumer<T5>> apply(T1 s, T2 s2, T3 s3)
s - the first input parameters2 - the second input parameters3 - the third input parameterdefault java.util.function.Consumer<T5> apply(T1 s, T2 s2, T3 s3, T4 s4)
s - the first input parameters2 - the second input parameters3 - the third input parameters4 - the fourth input parameter