Package com.atlassian.query.history
Class AndHistoryPredicate
java.lang.Object
com.atlassian.query.history.AndHistoryPredicate
- All Implemented Interfaces:
HistoryPredicate
Represents a sequence of
HistoryPredicates composed with AND operators such that the
resulting predicate is true only if ALL of the composed predicates are true.- Since:
- v4.3
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<R> Raccept(PredicateVisitor<R> visitor) Allows us to perform operations over the clauses based on the passed in visitor.
-
Constructor Details
-
AndHistoryPredicate
-
-
Method Details
-
getDisplayString
- Specified by:
getDisplayStringin interfaceHistoryPredicate
-
accept
Description copied from interface:HistoryPredicateAllows us to perform operations over the clauses based on the passed in visitor. This method calls the visit method on the visitor with this reference.- Specified by:
acceptin interfaceHistoryPredicate- Parameters:
visitor- the visitor to accept.- Returns:
- the result of the visit operation who's type is specified by the incoming visitor.
-
getPredicates
-