Class WorkflowConditionBaseVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>,WorkflowConditionVisitor<T>
- Direct Known Subclasses:
WorkflowConditionBooleanInterpreter
WorkflowConditionVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.-
Constructor Summary
Constructors -
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 class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Constructor Details
-
WorkflowConditionBaseVisitor
public WorkflowConditionBaseVisitor()
-
-
Method Details
-
visitBooleanExpression
Visit a parse tree produced byWorkflowConditionParser.booleanExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBooleanExpressionin interfaceWorkflowConditionVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanTerm
Visit a parse tree produced byWorkflowConditionParser.booleanTerm().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBooleanTermin interfaceWorkflowConditionVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanValue
Visit a parse tree produced byWorkflowConditionParser.booleanValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBooleanValuein interfaceWorkflowConditionVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelation
Visit a parse tree produced byWorkflowConditionParser.relation().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRelationin interfaceWorkflowConditionVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelationOperand
Visit a parse tree produced byWorkflowConditionParser.relationOperand().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRelationOperandin interfaceWorkflowConditionVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAtom
Visit a parse tree produced byWorkflowConditionParser.atom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAtomin interfaceWorkflowConditionVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-