Class TierDataBaseVisitor<T>
- Type Parameters:
T
- The return type of the visit operation. UseVoid
for operations with no return type.
- All Implemented Interfaces:
TierDataVisitor<T>
,org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
TierDataVisitor
,
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 byTierDataParser.comment()
.Visit a parse tree produced byTierDataParser.element()
.Visit a parse tree produced byTierDataParser.href()
.Visit a parse tree produced byTierDataParser.internal_media()
.Visit a parse tree produced byTierDataParser.label()
.Visit a parse tree produced byTierDataParser.link()
.Visit a parse tree produced byTierDataParser.number()
.Visit a parse tree produced byTierDataParser.tierdata()
.Visit a parse tree produced byTierDataParser.time_in_minutes_seconds()
.Visit a parse tree produced byTierDataParser.usertier()
.Visit a parse tree produced byTierDataParser.word()
.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
-
TierDataBaseVisitor
public TierDataBaseVisitor()
-
-
Method Details
-
visitUsertier
Visit a parse tree produced byTierDataParser.usertier()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitUsertier
in interfaceTierDataVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTierdata
Visit a parse tree produced byTierDataParser.tierdata()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitTierdata
in interfaceTierDataVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitElement
Visit a parse tree produced byTierDataParser.element()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitElement
in interfaceTierDataVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitWord
Visit a parse tree produced byTierDataParser.word()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitWord
in interfaceTierDataVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitComment
Visit a parse tree produced byTierDataParser.comment()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitComment
in interfaceTierDataVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitInternal_media
Visit a parse tree produced byTierDataParser.internal_media()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitInternal_media
in interfaceTierDataVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLabel
Visit a parse tree produced byTierDataParser.label()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitLabel
in interfaceTierDataVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitLink
Visit a parse tree produced byTierDataParser.link()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitLink
in interfaceTierDataVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitHref
Visit a parse tree produced byTierDataParser.href()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitHref
in interfaceTierDataVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitTime_in_minutes_seconds
Visit a parse tree produced byTierDataParser.time_in_minutes_seconds()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitTime_in_minutes_seconds
in interfaceTierDataVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-
visitNumber
Visit a parse tree produced byTierDataParser.number()
.The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)
onctx
.- Specified by:
visitNumber
in interfaceTierDataVisitor<T>
- Parameters:
ctx
- the parse tree- Returns:
- the visitor result
-