Interface ValidWhenVisitor<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:
ValidWhenBaseVisitor,ValidWhenEvaluator
public interface ValidWhenVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
ValidWhenParser.-
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byValidWhenParser.comparison().Visit a parse tree produced byValidWhenParser.comparisonExpression().Visit a parse tree produced byValidWhenParser.decimal().Visit a parse tree produced by theexprComplabeled alternative inValidWhenParser.expr().Visit a parse tree produced byValidWhenParser.expression().Visit a parse tree produced by theexprJoinlabeled alternative inValidWhenParser.expr().Visit a parse tree produced by thefield1labeled alternative inValidWhenParser.field().Visit a parse tree produced by thefield2labeled alternative inValidWhenParser.field().Visit a parse tree produced by thefield3labeled alternative inValidWhenParser.field().Visit a parse tree produced by thefield4labeled alternative inValidWhenParser.field().Visit a parse tree produced by thefield5labeled alternative inValidWhenParser.field().Visit a parse tree produced byValidWhenParser.identifier().Visit a parse tree produced byValidWhenParser.integer().Visit a parse tree produced byValidWhenParser.joinedExpression().Visit a parse tree produced by theliteralNulllabeled alternative inValidWhenParser.literal().Visit a parse tree produced by theliteralNumlabeled alternative inValidWhenParser.literal().Visit a parse tree produced by theliteralStrlabeled alternative inValidWhenParser.literal().Visit a parse tree produced by theliteralThislabeled alternative inValidWhenParser.literal().Visit a parse tree produced byValidWhenParser.number().Visit a parse tree produced byValidWhenParser.string().Visit a parse tree produced byValidWhenParser.value().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitDecimal
Visit a parse tree produced byValidWhenParser.decimal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInteger
Visit a parse tree produced byValidWhenParser.integer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumber
Visit a parse tree produced byValidWhenParser.number().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitString
Visit a parse tree produced byValidWhenParser.string().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifier
Visit a parse tree produced byValidWhenParser.identifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitField1
Visit a parse tree produced by thefield1labeled alternative inValidWhenParser.field().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitField2
Visit a parse tree produced by thefield2labeled alternative inValidWhenParser.field().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitField3
Visit a parse tree produced by thefield3labeled alternative inValidWhenParser.field().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitField4
Visit a parse tree produced by thefield4labeled alternative inValidWhenParser.field().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitField5
Visit a parse tree produced by thefield5labeled alternative inValidWhenParser.field().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralNum
Visit a parse tree produced by theliteralNumlabeled alternative inValidWhenParser.literal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralStr
Visit a parse tree produced by theliteralStrlabeled alternative inValidWhenParser.literal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralNull
Visit a parse tree produced by theliteralNulllabeled alternative inValidWhenParser.literal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiteralThis
Visit a parse tree produced by theliteralThislabeled alternative inValidWhenParser.literal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValue
Visit a parse tree produced byValidWhenParser.value().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpression
Visit a parse tree produced byValidWhenParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExprComp
Visit a parse tree produced by theexprComplabeled alternative inValidWhenParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExprJoin
Visit a parse tree produced by theexprJoinlabeled alternative inValidWhenParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoinedExpression
Visit a parse tree produced byValidWhenParser.joinedExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparison
Visit a parse tree produced byValidWhenParser.comparison().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparisonExpression
Visit a parse tree produced byValidWhenParser.comparisonExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-