Uses of Interface
org.apache.commons.lang3.Functions.FailablePredicate
-
Packages that use Functions.FailablePredicate Package Description org.apache.commons.lang3 Provides highly reusable static utility methods, chiefly concerned with adding value to thejava.langclasses. -
-
Uses of Functions.FailablePredicate in org.apache.commons.lang3
Methods in org.apache.commons.lang3 with parameters of type Functions.FailablePredicate Modifier and Type Method Description booleanStreams.FailableStream. allMatch(Functions.FailablePredicate<O,?> predicate)Deprecated.Returns whether all elements of this stream match the provided predicate.booleanStreams.FailableStream. anyMatch(Functions.FailablePredicate<O,?> predicate)Deprecated.Returns whether any elements of this stream match the provided predicate.static <I> Predicate<I>Functions. asPredicate(Functions.FailablePredicate<I,?> predicate)Deprecated.Converts the givenFunctions.FailablePredicateinto a standardPredicate.Streams.FailableStream<O>Streams.FailableStream. filter(Functions.FailablePredicate<O,?> predicate)Deprecated.Returns a FailableStream consisting of the elements of this stream that match the given FailablePredicate.static <O,T extends Throwable>
booleanFunctions. test(Functions.FailablePredicate<O,T> predicate, O object)Deprecated.Tests a predicate and rethrows any exception as aRuntimeException.
-