Package org.anchoranalysis.io.input.csv
Interface ProcessCSVLine
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Called when a single line is read by a CSV-reader to determine how the entry is further
processed.
- Author:
- Owen Feehan
-
Method Summary
Modifier and TypeMethodDescriptionvoid
processLine
(String[] line, boolean firstLine) Called when a single line is read by a CSV-reader to determine how the entry is further processed.
-
Method Details
-
processLine
Called when a single line is read by a CSV-reader to determine how the entry is further processed.- Parameters:
line
- the line.firstLine
- true when it is the first line in the file, false otherwise.- Throws:
OperationFailedException
- if an error occurs processing the line.
-