Interface CSVParserListener


public interface CSVParserListener
Listener for the CSVParser object.
Author:
Cristopher Yates
  • Method Details

    • startCSVFile

      void startCSVFile(CSVTokenStream tokenStream)
    • endCSVFile

      void endCSVFile(CSVTokenStream tokenStream)
    • startRecord

      void startRecord(CSVTokenStream tokenStream, int recordIndex)
    • endRecord

      void endRecord(CSVTokenStream tokenStream, int recordIndex, String[] record)
    • startField

      void startField(CSVTokenStream tokenStream, int recordIndex, int fieldIndex)
    • endField

      void endField(CSVTokenStream tokenStream, int recordIndex, int fieldIndex, String field)
    • startEscaped

      void startEscaped(CSVTokenStream tokenStream, int recordIndex, int fieldIndex)
    • endEscaped

      void endEscaped(CSVTokenStream tokenStream, int recordIndex, int fieldIndex, String escaped)
    • startUnescaped

      void startUnescaped(CSVTokenStream tokenStream, int recordIndex, int fieldIndex)
    • endUnescaped

      void endUnescaped(CSVTokenStream tokenStream, int recordIndex, int fieldIndex, String unescaped)