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