Uses of Interface
org.apache.commons.lang3.function.FailableBiConsumer
-
Packages that use FailableBiConsumer Package Description org.apache.commons.lang3 Provides highly reusable utility methods, chiefly concerned with adding value to thejava.lang
classes.org.apache.commons.lang3.function Provides functional interfaces to complement those injava.lang.function
and utilities for working with Java 8 lambdas.org.apache.commons.lang3.time Provides classes and methods to work with dates and durations.org.apache.commons.lang3.tuple -
-
Uses of FailableBiConsumer in org.apache.commons.lang3
Methods in org.apache.commons.lang3 with parameters of type FailableBiConsumer Modifier and Type Method Description AppendableJoiner.Builder<T>
AppendableJoiner.Builder. setElementAppender(FailableBiConsumer<java.lang.Appendable,T,java.io.IOException> appender)
Sets the consumer used to render each element of typeT
onto anAppendable
. -
Uses of FailableBiConsumer in org.apache.commons.lang3.function
Fields in org.apache.commons.lang3.function declared as FailableBiConsumer Modifier and Type Field Description static FailableBiConsumer
FailableBiConsumer. NOP
NOP singletonMethods in org.apache.commons.lang3.function that return FailableBiConsumer Modifier and Type Method Description default 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,java.lang.Throwable>MethodInvokers. asFailableBiConsumer(java.lang.reflect.Method method)
Produces aFailableBiConsumer
for a given consumer Method.static <T,U,E extends java.lang.Throwable>
FailableBiConsumer<T,U,E>FailableBiConsumer. nop()
Gets the NOP singleton.Methods in org.apache.commons.lang3.function with parameters of type FailableBiConsumer Modifier and Type Method Description static <T,U,E extends java.lang.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>
java.util.function.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 Modifier and Type Method Description static <T extends java.lang.Throwable>
voidDurationUtils. accept(FailableBiConsumer<java.lang.Long,java.lang.Integer,T> consumer, java.time.Duration duration)
Accepts the function with the duration as a long milliseconds and int nanoseconds. -
Uses of FailableBiConsumer in org.apache.commons.lang3.tuple
Methods in org.apache.commons.lang3.tuple with parameters of type FailableBiConsumer Modifier and Type Method Description <E extends java.lang.Throwable>
voidPair. accept(FailableBiConsumer<L,R,E> consumer)
Accepts this key and value as arguments to the given consumer.
-