Uses of Interface
org.apache.commons.lang3.function.FailableLongConsumer
-
Packages that use FailableLongConsumer 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 FailableLongConsumer in org.apache.commons.lang3.function
Fields in org.apache.commons.lang3.function declared as FailableLongConsumer Modifier and Type Field Description static FailableLongConsumer
FailableLongConsumer. NOP
NOP singletonMethods in org.apache.commons.lang3.function that return FailableLongConsumer Modifier and Type Method Description default FailableLongConsumer<E>
FailableLongConsumer. andThen(FailableLongConsumer<E> after)
Returns a composedFailableLongConsumer
likeLongConsumer.andThen(LongConsumer)
.static <E extends java.lang.Throwable>
FailableLongConsumer<E>FailableLongConsumer. nop()
Returns The NOP singleton.Methods in org.apache.commons.lang3.function with parameters of type FailableLongConsumer Modifier and Type Method Description static <E extends java.lang.Throwable>
voidFailable. accept(FailableLongConsumer<E> consumer, long value)
Consumes a consumer and rethrows any exception as aRuntimeException
.default FailableLongConsumer<E>
FailableLongConsumer. andThen(FailableLongConsumer<E> after)
Returns a composedFailableLongConsumer
likeLongConsumer.andThen(LongConsumer)
.
-