Uses of Interface
org.apache.commons.lang3.Functions.FailableBiFunction
Package
Description
Provides highly reusable static utility methods, chiefly concerned with adding value to the
java.lang
classes.-
Uses of Functions.FailableBiFunction in org.apache.commons.lang3
Modifier and TypeMethodDescriptionstatic <O1,
O2, O, T extends Throwable>
OFunctions.apply
(Functions.FailableBiFunction<O1, O2, O, T> function, O1 input1, O2 input2) Deprecated.Applies a function and rethrows any exception as aRuntimeException
.static <O1,
O2, O> BiFunction<O1, O2, O> Functions.asBiFunction
(Functions.FailableBiFunction<O1, O2, O, ?> function) Deprecated.Converts the givenFunctions.FailableBiFunction
into a standardBiFunction
.