All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.opencsv.CSVReaderHeaderAwareBuilder Maven / Gradle / Ivy

package com.opencsv;

import java.io.IOException;
import java.io.Reader;

/**
 * Builder for CSVReaderHeaderAware. No transformations on the original parameters accepted by CSVReaderBuilder.
 *
 * @author Andre Rosot
 * @since 4.2
 */
public class CSVReaderHeaderAwareBuilder extends CSVReaderBuilder {

    /**
     * Constructor for CSVReaderHeaderAwareBuilder.
     *
     * @param reader The reader to an underlying CSV source.
     */
    public CSVReaderHeaderAwareBuilder(Reader reader) {
        super(reader);
    }

    @Override
    public CSVReaderHeaderAware build() throws RuntimeException {
        final ICSVParser parser = getOrCreateCsvParser();
        try {
            return new CSVReaderHeaderAware(getReader(), getSkipLines(), parser, keepCarriageReturn(), isVerifyReader(),
                    getMultilineLimit(), getErrorLocale(), getLineValidatorAggregator(), getRowValidatorAggregator());
        } catch (IOException e) {
            throw new RuntimeException("Failed to initialize CSVReaderHeaderAware", e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy