Uses of Interface
org.apache.commons.lang3.function.FailableBiConsumer
Package
Description
Provides highly reusable static utility methods, chiefly concerned with adding value to the
java.lang
classes.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
Modifier and TypeMethodDescriptionAppendableJoiner.Builder.setElementAppender
(FailableBiConsumer<Appendable, T, IOException> appender) Sets the consumer used to render each element of typeT
onto anAppendable
. -
Uses of FailableBiConsumer in org.apache.commons.lang3.function
Modifier and TypeFieldDescriptionstatic final FailableBiConsumer
FailableBiConsumer.NOP
NOP singletonModifier 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.Modifier 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
-
Uses of FailableBiConsumer in org.apache.commons.lang3.tuple
Modifier and TypeMethodDescription<E extends Throwable>
voidPair.accept
(FailableBiConsumer<L, R, E> consumer) Accepts this key and value as arguments to the given consumer.