Interface WorkflowConditionVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
WorkflowConditionBaseVisitor,WorkflowConditionBooleanInterpreter
public interface WorkflowConditionVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
WorkflowConditionParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byWorkflowConditionParser.atom().Visit a parse tree produced byWorkflowConditionParser.booleanExpression().Visit a parse tree produced byWorkflowConditionParser.booleanTerm().Visit a parse tree produced byWorkflowConditionParser.booleanValue().Visit a parse tree produced byWorkflowConditionParser.relation().Visit a parse tree produced byWorkflowConditionParser.relationOperand().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitBooleanExpression
Visit a parse tree produced byWorkflowConditionParser.booleanExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanTerm
Visit a parse tree produced byWorkflowConditionParser.booleanTerm().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanValue
Visit a parse tree produced byWorkflowConditionParser.booleanValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelation
Visit a parse tree produced byWorkflowConditionParser.relation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelationOperand
Visit a parse tree produced byWorkflowConditionParser.relationOperand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAtom
Visit a parse tree produced byWorkflowConditionParser.atom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-