Class AbstractQuantifierPredicate<T>
java.lang.Object
org.apache.commons.collections4.functors.AbstractQuantifierPredicate<T>
- All Implemented Interfaces:
Serializable, PredicateDecorator<T>, Predicate<T>
- Direct Known Subclasses:
AllPredicate, AnyPredicate, NonePredicate, OnePredicate
public abstract class AbstractQuantifierPredicate<T>
extends Object
implements PredicateDecorator<T>, Serializable
Abstract base class for quantification predicates, e.g. All, Any, None.
- Since:
- 4.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe array of predicates to callprivate static final longSerial version UID -
Constructor Summary
ConstructorsConstructorDescriptionAbstractQuantifierPredicate(Predicate<? super T>... predicates) Constructor that performs no validation. -
Method Summary
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial version UID- See Also:
-
iPredicates
-
-
Constructor Details
-
AbstractQuantifierPredicate
-
-
Method Details
-
getPredicates
Gets the predicates.- Specified by:
getPredicatesin interfacePredicateDecorator<T>- Returns:
- a copy of the predicates
- Since:
- 3.1
-