Package fr.project.lib
Class TabSeparatedValuesBaseVisitor<T>
java.lang.Object
org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
fr.project.lib.TabSeparatedValuesBaseVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
TabSeparatedValuesVisitor<T>,org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
public class TabSeparatedValuesBaseVisitor<T>
extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
implements TabSeparatedValuesVisitor<T>
This class provides an empty implementation of
TabSeparatedValuesVisitor,
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 byTabSeparatedValuesParser.field().Visit a parse tree produced byTabSeparatedValuesParser.hdr().Visit a parse tree produced byTabSeparatedValuesParser.row().Visit a parse tree produced byTabSeparatedValuesParser.tabSeparatedValuesFile().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
-
TabSeparatedValuesBaseVisitor
public TabSeparatedValuesBaseVisitor()
-
-
Method Details
-
visitTabSeparatedValuesFile
Visit a parse tree produced byTabSeparatedValuesParser.tabSeparatedValuesFile().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTabSeparatedValuesFilein interfaceTabSeparatedValuesVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHdr
Visit a parse tree produced byTabSeparatedValuesParser.hdr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHdrin interfaceTabSeparatedValuesVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRow
Visit a parse tree produced byTabSeparatedValuesParser.row().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRowin interfaceTabSeparatedValuesVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitField
Visit a parse tree produced byTabSeparatedValuesParser.field().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFieldin interfaceTabSeparatedValuesVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-