Interface FieldSpecifierNotationVisitor<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:
 FieldSpecifierNotationBaseVisitor
public interface FieldSpecifierNotationVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
 by 
FieldSpecifierNotationParser.- 
Method Summary
Modifier and TypeMethodDescriptionVisit a parse tree produced byFieldSpecifierNotationParser.arrayQualifier().Visit a parse tree produced by thearrayQualifierListlabeled 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 themapQualifierListlabeled alternative inFieldSpecifierNotationParser.qualifierList().Visit a parse tree produced byFieldSpecifierNotationParser.qualifiedComponent().Visit a parse tree produced by thequalifyComponentlabeled alternative inFieldSpecifierNotationParser.dotExpressionComponent().Visit a parse tree produced by thesimpleIdentifierlabeled alternative inFieldSpecifierNotationParser.dotExpressionComponent().Visit a parse tree produced by thewildcardlabeled alternative inFieldSpecifierNotationParser.dotExpressionComponent().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal 
- 
Method Details
- 
visitFieldSpecifier
Visit a parse tree produced byFieldSpecifierNotationParser.fieldSpecifier().- Parameters:
 ctx- the parse tree- Returns:
 - the visitor result
 
 - 
visitDotExpression
Visit a parse tree produced byFieldSpecifierNotationParser.dotExpression().- Parameters:
 ctx- the parse tree- Returns:
 - the visitor result
 
 - 
visitQualifyComponent
Visit a parse tree produced by thequalifyComponentlabeled alternative inFieldSpecifierNotationParser.dotExpressionComponent().- Parameters:
 ctx- the parse tree- Returns:
 - the visitor result
 
 - 
visitSimpleIdentifier
Visit a parse tree produced by thesimpleIdentifierlabeled alternative inFieldSpecifierNotationParser.dotExpressionComponent().- Parameters:
 ctx- the parse tree- Returns:
 - the visitor result
 
 - 
visitWildcard
Visit a parse tree produced by thewildcardlabeled alternative inFieldSpecifierNotationParser.dotExpressionComponent().- Parameters:
 ctx- the parse tree- Returns:
 - the visitor result
 
 - 
visitQualifiedComponent
Visit a parse tree produced byFieldSpecifierNotationParser.qualifiedComponent().- Parameters:
 ctx- the parse tree- Returns:
 - the visitor result
 
 - 
visitArrayQualifierList
Visit a parse tree produced by thearrayQualifierListlabeled alternative inFieldSpecifierNotationParser.qualifierList().- Parameters:
 ctx- the parse tree- Returns:
 - the visitor result
 
 - 
visitMapQualifierList
Visit a parse tree produced by themapQualifierListlabeled alternative inFieldSpecifierNotationParser.qualifierList().- Parameters:
 ctx- the parse tree- Returns:
 - the visitor result
 
 - 
visitArrayQualifier
Visit a parse tree produced byFieldSpecifierNotationParser.arrayQualifier().- Parameters:
 ctx- the parse tree- Returns:
 - the visitor result
 
 - 
visitMapQualifier
Visit a parse tree produced byFieldSpecifierNotationParser.mapQualifier().- Parameters:
 ctx- the parse tree- Returns:
 - the visitor result
 
 
 -