Uses of Interface
org.apache.commons.lang3.function.FailableDoubleConsumer
-
Packages that use FailableDoubleConsumer Package Description org.apache.commons.lang3.function Provides functional interfaces to complement those injava.lang.function
and utilities for working with Java 8 lambdas. -
-
Uses of FailableDoubleConsumer in org.apache.commons.lang3.function
Fields in org.apache.commons.lang3.function declared as FailableDoubleConsumer Modifier and Type Field Description static FailableDoubleConsumer
FailableDoubleConsumer. NOP
NOP singletonMethods in org.apache.commons.lang3.function that return FailableDoubleConsumer Modifier and Type Method Description default FailableDoubleConsumer<E>
FailableDoubleConsumer. andThen(FailableDoubleConsumer<E> after)
Returns a composedFailableDoubleConsumer
likeDoubleConsumer.andThen(DoubleConsumer)
.static <E extends java.lang.Throwable>
FailableDoubleConsumer<E>FailableDoubleConsumer. nop()
Returns The NOP singleton.Methods in org.apache.commons.lang3.function with parameters of type FailableDoubleConsumer Modifier and Type Method Description static <E extends java.lang.Throwable>
voidFailable. accept(FailableDoubleConsumer<E> consumer, double value)
Consumes a consumer and rethrows any exception as aRuntimeException
.default FailableDoubleConsumer<E>
FailableDoubleConsumer. andThen(FailableDoubleConsumer<E> after)
Returns a composedFailableDoubleConsumer
likeDoubleConsumer.andThen(DoubleConsumer)
.
-