org.nerd4j.csv.reader.CSVReaderFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nerd4j-csv Show documentation
Show all versions of nerd4j-csv Show documentation
CSV manipulation library.
/*
* #%L
* Nerd4j CSV
* %%
* Copyright (C) 2013 Nerd4j
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
package org.nerd4j.csv.reader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import org.nerd4j.csv.exception.CSVToModelBindingException;
/**
* Represents a Factory
able to build and configure {@link CSVReader}s.
*
* @param type of the data model returned by the reader.
*
* @author Nerd4j Team
*/
public interface CSVReaderFactory
{
/**
* Creates the {@link CSVReader} able to read the given
* CSV source file and produce a related data model.
*
* @param file the CSV source file.
* @return a related {@link CSVReader}.
* @throws FileNotFoundException if fails to find the source.
* @throws IOException if fails to read the source.
* @throws CSVToModelBindingException if binding configuration is inconsistent.
*/
public CSVReader getCSVReader( File file )
throws FileNotFoundException, IOException, CSVToModelBindingException;
/**
* Creates the {@link CSVReader} able to read the given
* CSV source input stream and produce a related data model.
*
* @param is the CSV source stream.
* @return a related {@link CSVReader}.
* @throws IOException if fails to read the source.
* @throws CSVToModelBindingException if binding configuration is inconsistent.
*/
public CSVReader getCSVReader( InputStream is )
throws IOException, CSVToModelBindingException;
/**
* Creates the {@link CSVReader} able to read the given
* CSV source and produce a related data model.
*
* @param reader the CSV source reader.
* @return a related {@link CSVReader}.
* @throws IOException if fails to read the source.
* @throws CSVToModelBindingException if binding configuration is inconsistent.
*/
public CSVReader getCSVReader( Reader reader )
throws IOException, CSVToModelBindingException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy