Package fr.project.lib
Interface TabSeparatedValuesVisitor<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:
TabSeparatedValuesBaseVisitor
public interface TabSeparatedValuesVisitor<T>
extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
This interface defines a complete generic visitor for a parse tree produced
by
TabSeparatedValuesParser.-
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 interface org.antlr.v4.runtime.tree.ParseTreeVisitor
visit, visitChildren, visitErrorNode, visitTerminal
-
Method Details
-
visitTabSeparatedValuesFile
Visit a parse tree produced byTabSeparatedValuesParser.tabSeparatedValuesFile().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHdr
Visit a parse tree produced byTabSeparatedValuesParser.hdr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRow
Visit a parse tree produced byTabSeparatedValuesParser.row().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitField
Visit a parse tree produced byTabSeparatedValuesParser.field().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-