default ThrowingBiConsumer<T,U,X> |
ThrowingBiConsumer.andThen(ThrowingBiConsumer<? super T,? super U,? extends X> after) |
Returns a composed ThrowingBiConsumer that performs, in sequence, this operation followed by the after operation.
|
static <T,U,X extends Throwable> ThrowingBiConsumer<T,U,X> |
ThrowingBiConsumer.checked(BiConsumer<? super T,? super U> operation) |
Returns an operation that performs the operation operation to its input.
|
static <T,U,X extends Throwable> ThrowingBiConsumer<T,U,X> |
ThrowingBiConsumer.checked(BiConsumer<? super T,? super U> operation,
Class<X> errorType) |
Returns an operation that performs the operation operation to its input.
|
static <T,U,X extends Throwable> ThrowingBiConsumer<T,U,X> |
ThrowingBiConsumer.of(ThrowingBiConsumer<T,U,X> operation) |
Factory method for turning ThrowingBiConsumer-shaped lambdas into ThrowingBiConsumers.
|
default <E extends Throwable> ThrowingBiConsumer<T,U,E> |
ThrowingBiConsumer.onErrorAcceptChecked(ThrowingBiConsumer<? super T,? super U,? extends E> fallback) |
Returns an operation that performs this operation on its input.
|
default <E extends Throwable> ThrowingBiConsumer<T,U,E> |
ThrowingBiConsumer.onErrorHandleChecked(ThrowingConsumer<? super X,? extends E> errorHandler) |
Returns an operation that performs this operation on its input.
|
default <E extends Throwable> ThrowingBiConsumer<T,U,E> |
ThrowingBiConsumer.onErrorThrowAsChecked(Function<? super X,? extends E> errorMapper) |
Returns an operation that performs this operation on its input.
|