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