|
|||||||||
| 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,
java.util.List<java.lang.String> fieldValues)
Process a CSV data line. |
void |
processHeaderLine(int linenumber,
java.util.List<java.lang.String> fieldNames)
Process the CSV header line. |
| Method Detail |
|---|
void processHeaderLine(int linenumber,
java.util.List<java.lang.String> fieldNames)
linenumber - line number in the filefieldNames - CSV field names (name Strings are never null)
void processDataLine(int linenumber,
java.util.List<java.lang.String> fieldValues)
linenumber - line number in the filefieldValues - CSV field values (value Strings are never null)boolean continueProcessing()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||