Class TierDataBaseVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor 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, 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
-
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:
visitUsertierin 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:
visitTierdatain 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:
visitElementin 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:
visitWordin 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:
visitCommentin 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_mediain 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:
visitLabelin 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:
visitLinkin 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:
visitHrefin 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_secondsin 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:
visitNumberin interfaceTierDataVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-