Uses of Interface
org.apache.commons.lang3.Functions.FailablePredicate
Package
Description
Provides highly reusable static utility methods, chiefly concerned with adding value to the
java.lang
classes.-
Uses of Functions.FailablePredicate in org.apache.commons.lang3
Modifier and TypeMethodDescriptionboolean
Streams.FailableStream.allMatch
(Functions.FailablePredicate<O, ?> predicate) Deprecated.Returns whether all elements of this stream match the provided predicate.boolean
Streams.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.FailablePredicate
into a standardPredicate
.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
.