E1 - the first function argument typeE2 - the second function argument typeE3 - the third function argument typeE4 - the fourth function argument typeE5 - the fifth function argument typeE6 - the sixth function argument typeE7 - the seventh function argument typeE8 - the eightth function argument typeE9 - the ninth function argument type@FunctionalInterface
public interface NineArgusConsumer<E1,E2,E3,E4,E5,E6,E7,E8,E9>
| Modifier and Type | Method and Description |
|---|---|
void |
accept(E1 e1,
E2 e2,
E3 e3,
E4 e4,
E5 e5,
E6 e6,
E7 e7,
E8 e8,
E9 e9)
Performs this operation on the given arguments.
|
default NineArgusConsumer<E1,E2,E3,E4,E5,E6,E7,E8,E9> |
andThen(NineArgusConsumer<? super E1,? super E2,? super E3,? super E4,? super E5,? super E6,? super E7,? super E8,? super E9> after)
Returns a composed
BiConsumer that performs, in sequence, this
operation followed by the after operation. |
void accept(E1 e1, E2 e2, E3 e3, E4 e4, E5 e5, E6 e6, E7 e7, E8 e8, E9 e9)
e1 - the first function argumente2 - the second function argumente3 - the third function argumente4 - the fourth function argumente5 - the fifth function argumente6 - the sixth function argumente7 - the seventh function argumente8 - the eightth function argumente9 - the ninth function argumentdefault NineArgusConsumer<E1,E2,E3,E4,E5,E6,E7,E8,E9> andThen(NineArgusConsumer<? super E1,? super E2,? super E3,? super E4,? super E5,? super E6,? super E7,? super E8,? super E9> after)
BiConsumer that performs, in sequence, this
operation followed by the after operation. If performing either
operation throws an exception, it is relayed to the caller of the
composed operation. If performing this operation throws an exception, the
after operation will not be performed.after - the operation to perform after this operationBiConsumer that performs in sequence this
operation followed by the after operationjava.lang.NullPointerException - if after is null