default DoubleConsumerWithException<E> |
DoubleConsumerWithException.andThen(DoubleConsumerWithException<? extends E> after) |
Returns a composed DoubleConsumerWithException that performs, in
sequence, this operation followed by the after operation.
|
static <E extends Exception> ConsumerWithException<Double,E> |
DoubleConsumerWithException.asConsumer(DoubleConsumerWithException<E> operation) |
Converts a DoubleConsumerWithException to a
ConsumerWithException .
|
static <E extends Exception> DoubleConsumer |
DoubleConsumerWithException.ignored(DoubleConsumerWithException<E> operation) |
Converts a DoubleConsumerWithException to a lifted
DoubleConsumer ignoring exception.
|
static <E extends Exception> DoubleConsumer |
DoubleConsumerWithException.lifted(DoubleConsumerWithException<E> operation) |
Converts a DoubleConsumerWithException to a lifted
DoubleConsumer ignoring exception.
|
static <E extends Exception> DoubleFunction<CompletionStage<Void>> |
DoubleConsumerWithException.staged(DoubleConsumerWithException<E> operation) |
Converts a DoubleConsumerWithException to a staged
DoubleFunction .
|
static <E extends Exception> DoubleConsumer |
DoubleConsumerWithException.unchecked(DoubleConsumerWithException<E> operation) |
Converts a DoubleConsumerWithException to a DoubleConsumer
that wraps exception to RuntimeException .
|
static <E extends Exception> DoubleConsumer |
DoubleConsumerWithException.unchecked(DoubleConsumerWithException<E> operation,
Function<Exception,RuntimeException> exceptionMapper) |
Converts a DoubleConsumerWithException to a DoubleConsumer
that wraps exception to RuntimeException by using the provided
mapping function.
|