static <T,X extends Throwable> ThrowingObjLongConsumer<T,X> |
ThrowingObjLongConsumer.checked(ObjLongConsumer<? super T> operation) |
Returns an operation that performs the operation operation to its input.
|
static <T,X extends Throwable> ThrowingObjLongConsumer<T,X> |
ThrowingObjLongConsumer.checked(ObjLongConsumer<? super T> operation,
Class<X> errorType) |
Returns an operation that performs the operation operation to its input.
|
static <T,X extends Throwable> ThrowingObjLongConsumer<T,X> |
ThrowingObjLongConsumer.of(ThrowingObjLongConsumer<T,X> operation) |
Factory method for turning ThrowingObjLongConsumer-shaped lambdas into ThrowingObjLongConsumers.
|
default <E extends Throwable> ThrowingObjLongConsumer<T,E> |
ThrowingObjLongConsumer.onErrorAcceptChecked(ThrowingObjLongConsumer<? super T,? extends E> fallback) |
Returns an operation that performs this operation on its input.
|
default <E extends Throwable> ThrowingObjLongConsumer<T,E> |
ThrowingObjLongConsumer.onErrorHandleChecked(ThrowingConsumer<? super X,? extends E> errorHandler) |
Returns an operation that performs this operation on its input.
|
default <E extends Throwable> ThrowingObjLongConsumer<T,E> |
ThrowingObjLongConsumer.onErrorThrowAsChecked(Function<? super X,? extends E> errorMapper) |
Returns an operation that performs this operation on its input.
|