|
-bottom | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CSVLineProcessor
Interface for processing CSV lines for the optional header and the data lines.
Method Summary | |
---|---|
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. |
Method Detail |
---|
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()
|
-bottom | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |