Processor<ParsingContext>
, RowProcessor
public class RowListProcessor extends AbstractListProcessor<ParsingContext> implements RowProcessor
RowProcessor
implementation for storing all rows parsed into a list.
A typical use case of this class will be:
parserSettings.setRowProcessor(new RowListProcessor()); parser.parse(reader); // will invoke theRowProcessor.rowProcessed(String[], ParsingContext)
method for each parsed record. String[] headers = rowProcessor.getHeaders(); List<String[]> rows = rowProcessor.getRows();
Constructor | Description |
---|---|
RowListProcessor() |
getHeaders, getRows, processEnded, processStarted, rowProcessed
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
processEnded, processStarted, rowProcessed