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

com.codetaco.funnel.provider.CsvFileReader Maven / Gradle / Ivy

There is a newer version: 3.0.5
Show newest version
package com.codetaco.funnel.provider;

import java.io.IOException;
import java.text.ParseException;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.codetaco.funnel.parameters.FunnelContext;

/**
 * 

* CsvFileReader class. *

* * @author Chris DeGreef [email protected] */ public class CsvFileReader extends VariableLengthFileReader { static final private Logger _logger = LoggerFactory.getLogger(CsvFileReader.class); /** *

* Constructor for CsvFileReader. *

* * @param _context a {@link com.codetaco.funnel.parameters.FunnelContext} * object. * @throws java.io.IOException if any. * @throws java.text.ParseException if any. */ public CsvFileReader(final FunnelContext _context) throws IOException, ParseException { this(_context, defaultCharBufferSize); _logger.debug("csv file reader activated"); } /** *

* Constructor for CsvFileReader. *

* * @param _context a {@link com.codetaco.funnel.parameters.FunnelContext} * object. * @param sz a int. * @throws java.io.IOException if any. * @throws java.text.ParseException if any. */ public CsvFileReader(final FunnelContext _context, final int sz) throws IOException, ParseException { super(_context, sz); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy