Interface PredicateDecorator
-
- All Superinterfaces:
Predicate
- All Known Implementing Classes:
AllPredicate
,AndPredicate
,AnyPredicate
,NonePredicate
,NotPredicate
,NullIsExceptionPredicate
,NullIsFalsePredicate
,NullIsTruePredicate
,OnePredicate
,OrPredicate
,TransformedPredicate
@Deprecated(since="2021-04-30") public interface PredicateDecorator extends Predicate
Deprecated.Commons Collections 3 is in maintenance mode. Commons Collections 4 should be used instead.Defines a predicate that decorates one or more other predicates.This interface enables tools to access the decorated predicates.
- Since:
- Commons Collections 3.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Predicate[]
getPredicates()
Deprecated.Gets the predicates being decorated as an array.
-
-
-
Method Detail
-
getPredicates
Predicate[] getPredicates()
Deprecated.Gets the predicates being decorated as an array.The array may be the internal data structure of the predicate and thus should not be altered.
- Returns:
- the predicates being decorated
-
-