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