Uses of Interface
org.apache.commons.lang3.Functions.FailableBiConsumer
-
Packages that use Functions.FailableBiConsumer Package Description org.apache.commons.lang3 Provides highly reusable static utility methods, chiefly concerned with adding value to thejava.lang
classes. -
-
Uses of Functions.FailableBiConsumer in org.apache.commons.lang3
Methods in org.apache.commons.lang3 with parameters of type Functions.FailableBiConsumer Modifier and Type Method Description static <O1,O2,T extends java.lang.Throwable>
voidFunctions. accept(Functions.FailableBiConsumer<O1,O2,T> consumer, O1 object1, O2 object2)
Deprecated.Consumes a consumer and rethrows any exception as aRuntimeException
.static <O1,O2>
java.util.function.BiConsumer<O1,O2>Functions. asBiConsumer(Functions.FailableBiConsumer<O1,O2,?> consumer)
Deprecated.Converts the givenFunctions.FailableBiConsumer
into a standardBiConsumer
.
-