public interface ImportParser
extends java.io.Serializable
Modifier and Type | Method and Description |
---|---|
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). |
boolean parseLine(java.lang.String line, int lineNo, java.util.ArrayList<java.lang.String> record)
ArrayList
data structure (record).
For empty data fields, the resulting ArrayList
contains an empty
string.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.true
if processing should be continued,
otherwise false
(if the line is invalid or it is
a comment line).