-
- 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.ParseTreeListenerThis interface defines a complete listener for a parse tree produced byCSVParser.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidenterEmptyField(CSVParser.EmptyFieldContext ctx)Enter a parse tree produced by theEmptyFieldlabeled alternative inCSVParser.field().voidenterFile(CSVParser.FileContext ctx)Enter a parse tree produced byCSVParser.file().voidenterHeader(CSVParser.HeaderContext ctx)Enter a parse tree produced byCSVParser.header().voidenterRecord(CSVParser.RecordContext ctx)Enter a parse tree produced byCSVParser.record().voidenterStringField(CSVParser.StringFieldContext ctx)Enter a parse tree produced by theStringFieldlabeled alternative inCSVParser.field().voidenterTextField(CSVParser.TextFieldContext ctx)Enter a parse tree produced by theTextFieldlabeled alternative inCSVParser.field().voidexitEmptyField(CSVParser.EmptyFieldContext ctx)Exit a parse tree produced by theEmptyFieldlabeled alternative inCSVParser.field().voidexitFile(CSVParser.FileContext ctx)Exit a parse tree produced byCSVParser.file().voidexitHeader(CSVParser.HeaderContext ctx)Exit a parse tree produced byCSVParser.header().voidexitRecord(CSVParser.RecordContext ctx)Exit a parse tree produced byCSVParser.record().voidexitStringField(CSVParser.StringFieldContext ctx)Exit a parse tree produced by theStringFieldlabeled alternative inCSVParser.field().voidexitTextField(CSVParser.TextFieldContext ctx)Exit a parse tree produced by theTextFieldlabeled 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 theTextFieldlabeled alternative inCSVParser.field().- Parameters:
ctx- the parse tree
-
exitTextField
void exitTextField(CSVParser.TextFieldContext ctx)
Exit a parse tree produced by theTextFieldlabeled alternative inCSVParser.field().- Parameters:
ctx- the parse tree
-
enterStringField
void enterStringField(CSVParser.StringFieldContext ctx)
Enter a parse tree produced by theStringFieldlabeled alternative inCSVParser.field().- Parameters:
ctx- the parse tree
-
exitStringField
void exitStringField(CSVParser.StringFieldContext ctx)
Exit a parse tree produced by theStringFieldlabeled alternative inCSVParser.field().- Parameters:
ctx- the parse tree
-
enterEmptyField
void enterEmptyField(CSVParser.EmptyFieldContext ctx)
Enter a parse tree produced by theEmptyFieldlabeled alternative inCSVParser.field().- Parameters:
ctx- the parse tree
-
exitEmptyField
void exitEmptyField(CSVParser.EmptyFieldContext ctx)
Exit a parse tree produced by theEmptyFieldlabeled alternative inCSVParser.field().- Parameters:
ctx- the parse tree
-
-