public class

OperatorCollectingVisitor

extends Object
implements ClauseVisitor<R>
java.lang.Object
   ↳ com.atlassian.jira.issue.search.searchers.impl.OperatorCollectingVisitor

Summary

Public Constructors
OperatorCollectingVisitor()
Public Methods
Set<Operator> getOperators()
Void visit(WasClause clause)
Visit called when accepting a WasClause.
Void visit(AndClause andClause)
Visit called when accepting a AndClause.
Void visit(NotClause notClause)
Visit called when accepting a NotClause.
Void visit(OrClause orClause)
Visit called when accepting a OrClause.
Void visit(TerminalClause clause)
Visit called when accepting a TerminalClause.
Void visit(ChangedClause clause)
Visit called when accepting a ChangedClause.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.query.clause.ClauseVisitor

Public Constructors

public OperatorCollectingVisitor ()

Public Methods

public Set<Operator> getOperators ()

public Void visit (WasClause clause)

Visit called when accepting a WasClause.

Parameters
clause the node being visited.
Returns
  • The return type specified by the visitor.

public Void visit (AndClause andClause)

Visit called when accepting a AndClause.

Parameters
andClause the node being visited.
Returns
  • The return type specified by the visitor.

public Void visit (NotClause notClause)

Visit called when accepting a NotClause.

Parameters
notClause the node being visited.
Returns
  • The return type specified by the visitor.

public Void visit (OrClause orClause)

Visit called when accepting a OrClause.

Parameters
orClause the node being visited.
Returns
  • The return type specified by the visitor.

public Void visit (TerminalClause clause)

Visit called when accepting a TerminalClause.

Parameters
clause the node being visited.
Returns
  • The return type specified by the visitor.

public Void visit (ChangedClause clause)

Visit called when accepting a ChangedClause.

Parameters
clause the node being visited.
Returns
  • The return type specified by the visitor.