public class

AndHistoryPredicate

extends Object
implements HistoryPredicate
java.lang.Object
   ↳ com.atlassian.query.history.AndHistoryPredicate

Class Overview

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.

Summary

Public Constructors
AndHistoryPredicate(List<HistoryPredicate> predicates)
Public Methods
<R> R accept(PredicateVisitor<R> visitor)
Allows us to perform operations over the clauses based on the passed in visitor.
String getDisplayString()
List<HistoryPredicate> getPredicates()
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.query.history.HistoryPredicate

Public Constructors

public AndHistoryPredicate (List<HistoryPredicate> predicates)

Public Methods

public R accept (PredicateVisitor<R> visitor)

Allows 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.

Parameters
visitor the visitor to accept.
Returns
  • the result of the visit operation who's type is specified by the incoming visitor.

public String getDisplayString ()

public List<HistoryPredicate> getPredicates ()