Class TemplateParameterParserBaseVisitor<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>,TemplateParameterParserVisitor<T>
TemplateParameterParserVisitor,
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 byTemplateParameterParser.genericName().Visit a parse tree produced byTemplateParameterParser.genericPattern().Visit a parse tree produced byTemplateParameterParser.matcherName().Visit a parse tree produced byTemplateParameterParser.matcherPattern().Visit a parse tree produced byTemplateParameterParser.parameterName().Visit a parse tree produced byTemplateParameterParser.patternType().Visit a parse tree produced byTemplateParameterParser.type().Visit a parse tree produced byTemplateParameterParser.typeArray().Visit a parse tree produced byTemplateParameterParser.typedPattern().Visit a parse tree produced byTemplateParameterParser.typeName().Visit a parse tree produced byTemplateParameterParser.typeParameter().Visit a parse tree produced byTemplateParameterParser.variance().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
-
TemplateParameterParserBaseVisitor
public TemplateParameterParserBaseVisitor()
-
-
Method Details
-
visitMatcherPattern
Visit a parse tree produced byTemplateParameterParser.matcherPattern().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMatcherPatternin interfaceTemplateParameterParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericPattern
Visit a parse tree produced byTemplateParameterParser.genericPattern().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGenericPatternin interfaceTemplateParameterParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypedPattern
Visit a parse tree produced byTemplateParameterParser.typedPattern().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTypedPatternin interfaceTemplateParameterParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPatternType
Visit a parse tree produced byTemplateParameterParser.patternType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPatternTypein interfaceTemplateParameterParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitType
Visit a parse tree produced byTemplateParameterParser.type().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTypein interfaceTemplateParameterParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeParameter
Visit a parse tree produced byTemplateParameterParser.typeParameter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTypeParameterin interfaceTemplateParameterParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariance
Visit a parse tree produced byTemplateParameterParser.variance().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVariancein interfaceTemplateParameterParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeArray
Visit a parse tree produced byTemplateParameterParser.typeArray().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTypeArrayin interfaceTemplateParameterParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParameterName
Visit a parse tree produced byTemplateParameterParser.parameterName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitParameterNamein interfaceTemplateParameterParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGenericName
Visit a parse tree produced byTemplateParameterParser.genericName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGenericNamein interfaceTemplateParameterParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypeName
Visit a parse tree produced byTemplateParameterParser.typeName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTypeNamein interfaceTemplateParameterParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMatcherName
Visit a parse tree produced byTemplateParameterParser.matcherName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMatcherNamein interfaceTemplateParameterParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-