Uses of Interface
org.apache.commons.lang3.Functions.FailableBiConsumer
Package
Description
Provides highly reusable static utility methods, chiefly concerned with adding value to the
java.lang
classes.-
Uses of Functions.FailableBiConsumer in org.apache.commons.lang3
Modifier and TypeMethodDescriptionstatic <O1,
O2, T extends 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> BiConsumer<O1, O2> Functions.asBiConsumer
(Functions.FailableBiConsumer<O1, O2, ?> consumer) Deprecated.Converts the givenFunctions.FailableBiConsumer
into a standardBiConsumer
.