Class FieldSpecifierNotationBaseVisitor<T>
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Implemented Interfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
,FieldSpecifierNotationVisitor<T>
FieldSpecifierNotationVisitor
,
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 byFieldSpecifierNotationParser.arrayQualifier()
.Visit a parse tree produced by thearrayQualifierList
labeled alternative inFieldSpecifierNotationParser.qualifierList()
.Visit a parse tree produced byFieldSpecifierNotationParser.dotExpression()
.Visit a parse tree produced byFieldSpecifierNotationParser.fieldSpecifier()
.Visit a parse tree produced byFieldSpecifierNotationParser.mapQualifier()
.Visit a parse tree produced by themapQualifierList
labeled alternative inFieldSpecifierNotationParser.qualifierList()
.Visit a parse tree produced byFieldSpecifierNotationParser.qualifiedComponent()
.Visit a parse tree produced by thequalifyComponent
labeled alternative inFieldSpecifierNotationParser.dotExpressionComponent()
.Visit a parse tree produced by thesimpleIdentifier
labeled alternative inFieldSpecifierNotationParser.dotExpressionComponent()
.Visit a parse tree produced by thewildcard
labeled alternative inFieldSpecifierNotationParser.dotExpressionComponent()
.Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminal
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Constructor Details
-
FieldSpecifierNotationBaseVisitor
public FieldSpecifierNotationBaseVisitor()
-
-
Method Details
-
visitFieldSpecifier
Visit a parse tree produced byFieldSpecifierNotationParser.fieldSpecifier()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitFieldSpecifier
in interfaceFieldSpecifierNotationVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitDotExpression
Visit a parse tree produced byFieldSpecifierNotationParser.dotExpression()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitDotExpression
in interfaceFieldSpecifierNotationVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitQualifyComponent
Visit a parse tree produced by thequalifyComponent
labeled alternative inFieldSpecifierNotationParser.dotExpressionComponent()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitQualifyComponent
in interfaceFieldSpecifierNotationVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitSimpleIdentifier
Visit a parse tree produced by thesimpleIdentifier
labeled alternative inFieldSpecifierNotationParser.dotExpressionComponent()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitSimpleIdentifier
in interfaceFieldSpecifierNotationVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWildcard
Visit a parse tree produced by thewildcard
labeled alternative inFieldSpecifierNotationParser.dotExpressionComponent()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitWildcard
in interfaceFieldSpecifierNotationVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitQualifiedComponent
Visit a parse tree produced byFieldSpecifierNotationParser.qualifiedComponent()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitQualifiedComponent
in interfaceFieldSpecifierNotationVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitArrayQualifierList
Visit a parse tree produced by thearrayQualifierList
labeled alternative inFieldSpecifierNotationParser.qualifierList()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitArrayQualifierList
in interfaceFieldSpecifierNotationVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMapQualifierList
Visit a parse tree produced by themapQualifierList
labeled alternative inFieldSpecifierNotationParser.qualifierList()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitMapQualifierList
in interfaceFieldSpecifierNotationVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitArrayQualifier
Visit a parse tree produced byFieldSpecifierNotationParser.arrayQualifier()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitArrayQualifier
in interfaceFieldSpecifierNotationVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitMapQualifier
Visit a parse tree produced byFieldSpecifierNotationParser.mapQualifier()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitMapQualifier
in interfaceFieldSpecifierNotationVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-