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