T - first argument typeU - second argument typeE - the type of Throwable declared@FunctionalInterface public interface CheckedBiConsumer<T,U,E extends Throwable>
BiConsumerBiConsumer| Modifier and Type | Method and Description |
|---|---|
void |
accept(T t,
U u)
|
default CheckedBiConsumer<T,U,E> |
andThen(CheckedBiConsumer<? super T,? super U,? extends E> after)
|
void accept(T t, U u) throws E extends Throwable
t - first argumentu - second argumentThrowable - a possible checked exceptiondefault CheckedBiConsumer<T,U,E> andThen(CheckedBiConsumer<? super T,? super U,? extends E> after)
after - the bi-consumer to accept sequentially after thisCheckedBiConsumerNullPointerException - if after is nullCopyright © 2016–2018 earcam. All rights reserved.