Uses of Interface
org.apache.commons.lang3.function.FailableBiConsumer
Packages that use FailableBiConsumer
Package
Description
Provides functional interfaces to complement those in
java.lang.function
and utilities for working with Java
8 lambdas.Provides classes and methods to work with dates and durations.
Tuple classes, starting with a Pair class in version 3.0.
-
Uses of FailableBiConsumer in org.apache.commons.lang3.function
Fields in org.apache.commons.lang3.function declared as FailableBiConsumerModifier and TypeFieldDescriptionstatic final FailableBiConsumer
FailableBiConsumer.NOP
NOP singletonMethods in org.apache.commons.lang3.function that return FailableBiConsumerModifier and TypeMethodDescriptiondefault FailableBiConsumer<T,
U, E> FailableBiConsumer.andThen
(FailableBiConsumer<? super T, ? super U, E> after) Returns a composedFailableBiConsumer
likeBiConsumer.andThen(BiConsumer)
.static <T,
U> FailableBiConsumer<T, U, Throwable> MethodInvokers.asFailableBiConsumer
(Method method) Produces aFailableBiConsumer
for a given consumer Method.static <T,
U, E extends Throwable>
FailableBiConsumer<T,U, E> FailableBiConsumer.nop()
Returns The NOP singleton.Methods in org.apache.commons.lang3.function with parameters of type FailableBiConsumerModifier and TypeMethodDescriptionstatic <T,
U, E extends Throwable>
voidFailable.accept
(FailableBiConsumer<T, U, E> consumer, T object1, U object2) Consumes a consumer and rethrows any exception as aRuntimeException
.default FailableBiConsumer<T,
U, E> FailableBiConsumer.andThen
(FailableBiConsumer<? super T, ? super U, E> after) Returns a composedFailableBiConsumer
likeBiConsumer.andThen(BiConsumer)
.static <T,
U> BiConsumer<T, U> Failable.asBiConsumer
(FailableBiConsumer<T, U, ?> consumer) Converts the givenFailableBiConsumer
into a standardBiConsumer
. -
Uses of FailableBiConsumer in org.apache.commons.lang3.time
Methods in org.apache.commons.lang3.time with parameters of type FailableBiConsumer -
Uses of FailableBiConsumer in org.apache.commons.lang3.tuple
Methods in org.apache.commons.lang3.tuple with parameters of type FailableBiConsumerModifier and TypeMethodDescription<E extends Throwable>
voidPair.accept
(FailableBiConsumer<L, R, E> consumer) Accepts this key and value as arguments to the given consumer.