T
- first argument typeU
- second argument typeE
- the type of Throwable declared@FunctionalInterface public interface CheckedBiConsumer<T,U,E extends Throwable>
BiConsumer
BiConsumer
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 this
CheckedBiConsumer
NullPointerException
- if after
is null
Copyright © 2016–2018 earcam. All rights reserved.