Java org.apache.commons.collections4 PredicateUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections4 PredicateUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections4 PredicateUtils.

The text is from its open source code.

Method

PredicateallPredicate(final Predicate... predicates)
Create a new Predicate that returns true only if all of the specified predicates are true.
PredicateallPredicate(final Collection> predicates)
Create a new Predicate that returns true only if all of the specified predicates are true.
PredicateandPredicate(final Predicate predicate1, final Predicate predicate2)
Create a new Predicate that returns true only if both of the specified predicates are true.
PredicateanyPredicate(final Predicate... predicates)
Create a new Predicate that returns true if any of the specified predicates are true.
PredicateanyPredicate(final Collection> predicates)
Create a new Predicate that returns true if any of the specified predicates are true.
PredicateequalPredicate(final T value)
Creates a Predicate that checks if the input object is equal to the specified object using equals().
PredicatefalsePredicate()
Gets a Predicate that always returns false.
PredicatenonePredicate(final Predicate... predicates)
Create a new Predicate that returns true if none of the specified predicates are true.
PredicatenonePredicate(final Collection> predicates)
Create a new Predicate that returns true if none of the specified predicates are true.
PredicatenotNullPredicate()
Gets a Predicate that checks if the input object passed in is not null.
PredicatenotPredicate(final Predicate predicate)
Create a new Predicate that returns true if the specified predicate returns false and vice versa.
PredicateorPredicate(final Predicate predicate1, final Predicate predicate2)
Create a new Predicate that returns true if either of the specified predicates are true.
PredicatetruePredicate()
Gets a Predicate that always returns true.