public interface CSVLineProcessor
| Modifier and Type | Method and Description |
|---|---|
boolean |
continueProcessing()
Indicates if the line processing should continue.
|
void |
processDataLine(int linenumber,
List<String> fieldValues)
Process a CSV data line.
|
void |
processHeaderLine(int linenumber,
List<String> fieldNames)
Process the CSV header line.
|
void processHeaderLine(int linenumber,
List<String> fieldNames)
linenumber - line number in the filefieldNames - CSV field names (name Strings are never null)void processDataLine(int linenumber,
List<String> fieldValues)
linenumber - line number in the filefieldValues - CSV field values (value Strings are never null)boolean continueProcessing()
Copyright © 2020. All Rights Reserved.