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