- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
CSVBaseListener
interface CSVListener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
CSVParser
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Enter a parse tree produced by theEmptyField
labeled alternative inCSVParser.field()
.void
Enter a parse tree produced byCSVParser.file()
.void
Enter a parse tree produced byCSVParser.header()
.void
Enter a parse tree produced byCSVParser.record()
.void
Enter a parse tree produced by theStringField
labeled alternative inCSVParser.field()
.void
Enter a parse tree produced by theTextField
labeled alternative inCSVParser.field()
.void
Exit a parse tree produced by theEmptyField
labeled alternative inCSVParser.field()
.void
Exit a parse tree produced byCSVParser.file()
.void
Exit a parse tree produced byCSVParser.header()
.void
Exit a parse tree produced byCSVParser.record()
.void
Exit a parse tree produced by theStringField
labeled alternative inCSVParser.field()
.void
Exit a parse tree produced by theTextField
labeled alternative inCSVParser.field()
.Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterFile
Enter a parse tree produced byCSVParser.file()
.- Parameters:
ctx
- the parse tree
-
exitFile
Exit a parse tree produced byCSVParser.file()
.- Parameters:
ctx
- the parse tree
-
enterHeader
Enter a parse tree produced byCSVParser.header()
.- Parameters:
ctx
- the parse tree
-
exitHeader
Exit a parse tree produced byCSVParser.header()
.- Parameters:
ctx
- the parse tree
-
enterRecord
Enter a parse tree produced byCSVParser.record()
.- Parameters:
ctx
- the parse tree
-
exitRecord
Exit a parse tree produced byCSVParser.record()
.- Parameters:
ctx
- the parse tree
-
enterTextField
Enter a parse tree produced by theTextField
labeled alternative inCSVParser.field()
.- Parameters:
ctx
- the parse tree
-
exitTextField
Exit a parse tree produced by theTextField
labeled alternative inCSVParser.field()
.- Parameters:
ctx
- the parse tree
-
enterStringField
Enter a parse tree produced by theStringField
labeled alternative inCSVParser.field()
.- Parameters:
ctx
- the parse tree
-
exitStringField
Exit a parse tree produced by theStringField
labeled alternative inCSVParser.field()
.- Parameters:
ctx
- the parse tree
-
enterEmptyField
Enter a parse tree produced by theEmptyField
labeled alternative inCSVParser.field()
.- Parameters:
ctx
- the parse tree
-
exitEmptyField
Exit a parse tree produced by theEmptyField
labeled alternative inCSVParser.field()
.- Parameters:
ctx
- the parse tree
-