Uses of Class
org.apache.commons.collections4.functors.AbstractPredicate
Package
Description
-
Uses of AbstractPredicate in org.apache.commons.collections4.functors
Modifier and TypeClassDescriptionclass
Abstract base class for quantification predicates, e.g.final class
AllPredicate<T>
Predicate implementation that returns true if all the predicates return true.final class
AndPredicate<T>
Predicate implementation that returns true if both the predicates return true.final class
AnyPredicate<T>
Predicate implementation that returns true if any of the predicates return true.class
Predicate that compares the input object with the one stored in the predicate using a comparator.final class
Predicate implementation that returns true if the input is the same object as the one stored in this predicate by equals.final class
Predicate implementation that always throws an exception.final class
Predicate implementation that always returns false.final class
Predicate implementation that returns true if the input is the same object as the one stored in this predicate.final class
Predicate implementation that returns true if the input is an instanceof the type stored in this predicate.final class
Predicate implementation that returns true if none of the predicates return true.final class
Predicate implementation that returns true if the input is not null.final class
NotPredicate<T>
Predicate implementation that returns the opposite of the decorated predicate.final class
Predicate implementation that throws an exception if the input is null.final class
Predicate implementation that returns false if the input is null.final class
Predicate implementation that returns true if the input is null.final class
Predicate implementation that returns true if the input is null.final class
OnePredicate<T>
Predicate implementation that returns true if only one of the predicates return true.final class
OrPredicate<T>
Predicate implementation that returns true if either of the predicates return true.final class
Predicate implementation that transforms the given object before invoking anotherPredicate
.final class
Predicate implementation that returns the result of a transformer.final class
Predicate implementation that always returns true.final class
Predicate implementation that returns true the first time an object is passed into the predicate.