parseLine
public boolean parseLine(java.lang.String line,
int lineNo,
java.util.ArrayList<java.lang.String> record)
Parses a line of text into an ArrayList data structure (record).
For empty data fields, the resulting ArrayList contains an empty
string.
Implements parseLine in ImportParser.
- Specified by:
parseLine in interface ImportParser
- Parameters:
line - (String) The line of text to be parsed.
lineNo - (int) The number of the processed input file line.
record - (ArrayList) The results of the parse representing a
data record.
- Returns:
- boolean -
true if processing should be continued,
otherwise false (if the line is invalid or it is
a comment line).