-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
CSVBaseListener
,CSVEventDrivenImporter.AdjacencyListCSVListener
,CSVEventDrivenImporter.MatrixCSVListener
,CSVEventDrivenImporter.RowCSVListener
interface CSVListener extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced byCSVParser
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
enterEmptyField(CSVParser.EmptyFieldContext ctx)
Enter a parse tree produced by theEmptyField
labeled alternative inCSVParser.field()
.void
enterFile(CSVParser.FileContext ctx)
Enter a parse tree produced byCSVParser.file()
.void
enterHeader(CSVParser.HeaderContext ctx)
Enter a parse tree produced byCSVParser.header()
.void
enterRecord(CSVParser.RecordContext ctx)
Enter a parse tree produced byCSVParser.record()
.void
enterStringField(CSVParser.StringFieldContext ctx)
Enter a parse tree produced by theStringField
labeled alternative inCSVParser.field()
.void
enterTextField(CSVParser.TextFieldContext ctx)
Enter a parse tree produced by theTextField
labeled alternative inCSVParser.field()
.void
exitEmptyField(CSVParser.EmptyFieldContext ctx)
Exit a parse tree produced by theEmptyField
labeled alternative inCSVParser.field()
.void
exitFile(CSVParser.FileContext ctx)
Exit a parse tree produced byCSVParser.file()
.void
exitHeader(CSVParser.HeaderContext ctx)
Exit a parse tree produced byCSVParser.header()
.void
exitRecord(CSVParser.RecordContext ctx)
Exit a parse tree produced byCSVParser.record()
.void
exitStringField(CSVParser.StringFieldContext ctx)
Exit a parse tree produced by theStringField
labeled alternative inCSVParser.field()
.void
exitTextField(CSVParser.TextFieldContext ctx)
Exit a parse tree produced by theTextField
labeled alternative inCSVParser.field()
.
-
-
-
Method Detail
-
enterFile
void enterFile(CSVParser.FileContext ctx)
Enter a parse tree produced byCSVParser.file()
.- Parameters:
ctx
- the parse tree
-
exitFile
void exitFile(CSVParser.FileContext ctx)
Exit a parse tree produced byCSVParser.file()
.- Parameters:
ctx
- the parse tree
-
enterHeader
void enterHeader(CSVParser.HeaderContext ctx)
Enter a parse tree produced byCSVParser.header()
.- Parameters:
ctx
- the parse tree
-
exitHeader
void exitHeader(CSVParser.HeaderContext ctx)
Exit a parse tree produced byCSVParser.header()
.- Parameters:
ctx
- the parse tree
-
enterRecord
void enterRecord(CSVParser.RecordContext ctx)
Enter a parse tree produced byCSVParser.record()
.- Parameters:
ctx
- the parse tree
-
exitRecord
void exitRecord(CSVParser.RecordContext ctx)
Exit a parse tree produced byCSVParser.record()
.- Parameters:
ctx
- the parse tree
-
enterTextField
void enterTextField(CSVParser.TextFieldContext ctx)
Enter a parse tree produced by theTextField
labeled alternative inCSVParser.field()
.- Parameters:
ctx
- the parse tree
-
exitTextField
void exitTextField(CSVParser.TextFieldContext ctx)
Exit a parse tree produced by theTextField
labeled alternative inCSVParser.field()
.- Parameters:
ctx
- the parse tree
-
enterStringField
void enterStringField(CSVParser.StringFieldContext ctx)
Enter a parse tree produced by theStringField
labeled alternative inCSVParser.field()
.- Parameters:
ctx
- the parse tree
-
exitStringField
void exitStringField(CSVParser.StringFieldContext ctx)
Exit a parse tree produced by theStringField
labeled alternative inCSVParser.field()
.- Parameters:
ctx
- the parse tree
-
enterEmptyField
void enterEmptyField(CSVParser.EmptyFieldContext ctx)
Enter a parse tree produced by theEmptyField
labeled alternative inCSVParser.field()
.- Parameters:
ctx
- the parse tree
-
exitEmptyField
void exitEmptyField(CSVParser.EmptyFieldContext ctx)
Exit a parse tree produced by theEmptyField
labeled alternative inCSVParser.field()
.- Parameters:
ctx
- the parse tree
-
-