Package fr.project.lib
Interface CommaSeparatedValuesVisitor<T>
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
CommaSeparatedValuesBaseVisitor
public interface CommaSeparatedValuesVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
CommaSeparatedValuesParser.-
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 interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitCommaSeparatedValuesFile
Visit a parse tree produced byCommaSeparatedValuesParser.commaSeparatedValuesFile().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHdr
Visit a parse tree produced byCommaSeparatedValuesParser.hdr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRow
Visit a parse tree produced byCommaSeparatedValuesParser.row().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitField
Visit a parse tree produced byCommaSeparatedValuesParser.field().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-