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