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

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

Introduction

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

The text is from its open source code.

Method

PredicateallPredicate(Predicate[] predicates)
Create a new Predicate that returns true only if all of the specified predicates are true.
PredicateallPredicate(Collection predicates)
Create a new Predicate that returns true only if all of the specified predicates are true.
PredicateandPredicate(Predicate predicate1, Predicate predicate2)
Create a new Predicate that returns true only if both of the specified predicates are true.
PredicateanyPredicate(Predicate[] predicates)
Create a new Predicate that returns true if any of the specified predicates are true.
PredicateanyPredicate(Collection predicates)
Create a new Predicate that returns true if any of the specified predicates are true.
PredicateequalPredicate(Object 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.
PredicateinstanceofPredicate(Class type)
Creates a Predicate that checks if the object passed in is of a particular type, using instanceof.
PredicatenonePredicate(Predicate[] predicates)
Create a new Predicate that returns true if none of the specified predicates are true.
PredicatenonePredicate(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(Predicate predicate)
Create a new Predicate that returns true if the specified predicate returns false and vice versa.
PredicateonePredicate(Predicate[] predicates)
Create a new Predicate that returns true if only one of the specified predicates are true.
PredicateonePredicate(Collection predicates)
Create a new Predicate that returns true if only one of the specified predicates are true.
PredicatetruePredicate()
Gets a Predicate that always returns true.
PredicateuniquePredicate()
Creates a Predicate that returns true the first time an object is encountered, and false if the same object is received again.