RowListProcessor.java
/*******************************************************************************
* Copyright 2014 Univocity Software Pty Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package com.univocity.parsers.common.processor;
import com.univocity.parsers.common.*;
import com.univocity.parsers.common.processor.core.*;
import java.util.*;
/**
*
* A convenience {@link RowProcessor} implementation for storing all rows parsed into a list.
* A typical use case of this class will be:
*
* <hr><blockquote><pre>
*
* parserSettings.setRowProcessor(new RowListProcessor());
* parser.parse(reader); // will invoke the {@link RowListProcessor#rowProcessed(String[], ParsingContext)} method for each parsed record.
*
* String[] headers = rowProcessor.getHeaders();
* List<String[]> rows = rowProcessor.getRows();
*
* </pre></blockquote><hr>
*
*
* @author Univocity Software Pty Ltd - <a href="mailto:parsers@univocity.com">parsers@univocity.com</a>
*
*/
public class RowListProcessor extends AbstractListProcessor<ParsingContext> implements RowProcessor{
/**
* Creates a new processor of {@code String[]} rows.
*/
public RowListProcessor() {
}
/**
* Creates a new processor of {@code String[]} rows.
*
* @param expectedRowCount expected number of rows to be parsed from the input.
* Used to pre-allocate the size of the output {@link List} returned by {@link #getRows()}
*/
public RowListProcessor(int expectedRowCount) {
super(expectedRowCount);
}
}