E1 - the first function argument typeE2 - the second function argument typeE3 - the third function argument type@FunctionalInterface
public interface ThreeArgusConsumer<E1,E2,E3>
| Modifier and Type | Method and Description |
|---|---|
void |
accept(E1 e1,
E2 e2,
E3 e3)
Performs this operation on the given arguments.
|
default ThreeArgusConsumer<E1,E2,E3> |
andThen(ThreeArgusConsumer<? super E1,? super E2,? super E3> after)
Returns a composed
BiConsumer that performs, in sequence, this
operation followed by the after operation. |
void accept(E1 e1, E2 e2, E3 e3)
e1 - the first function argumente2 - the second function argumente3 - the third function argumentdefault ThreeArgusConsumer<E1,E2,E3> andThen(ThreeArgusConsumer<? super E1,? super E2,? super E3> 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