static <T,E extends Exception> BiConsumerWithException<T,Integer,E> |
ObjIntConsumerWithException.asBiConsumer(ObjIntConsumerWithException<T,E> operation) |
Converts a ObjIntConsumerWithException to a
BiConsumerWithException returning null .
|
static <T,E extends Exception> ObjIntConsumer<T> |
ObjIntConsumerWithException.ignored(ObjIntConsumerWithException<T,E> operation) |
Converts a ObjIntConsumerWithException to a lifted
ObjIntConsumer ignoring exception.
|
static <T,E extends Exception> ObjIntConsumer<T> |
ObjIntConsumerWithException.lifted(ObjIntConsumerWithException<T,E> operation) |
Converts a ObjIntConsumerWithException to a lifted
ObjIntConsumer ignoring exception.
|
static <T,E extends Exception> BiFunction<T,Integer,CompletionStage<Void>> |
ObjIntConsumerWithException.staged(ObjIntConsumerWithException<T,E> operation) |
Converts a ObjIntConsumerWithException to a staged BiFunction
.
|
static <T,E extends Exception> ObjIntConsumer<T> |
ObjIntConsumerWithException.unchecked(ObjIntConsumerWithException<T,E> operation) |
Converts a ObjIntConsumerWithException to a ObjIntConsumer
that wraps exception to RuntimeException .
|
static <T,E extends Exception> ObjIntConsumer<T> |
ObjIntConsumerWithException.unchecked(ObjIntConsumerWithException<T,E> operation,
Function<Exception,RuntimeException> exceptionMapper) |
Converts a ObjIntConsumerWithException to a ObjIntConsumer
that wraps exception to RuntimeException by using the provided
mapping function.
|