org.sfm.csv.CsvMapper Maven / Gradle / Ivy
package org.sfm.csv;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import org.sfm.map.MappingException;
import org.sfm.utils.RowHandler;
public interface CsvMapper {
> H forEach(InputStream is, H handle) throws IOException, MappingException;
> H forEach(Reader reader, H handle) throws IOException, MappingException;
> H forEach(Reader reader, H handle, int rowStart) throws IOException, MappingException;
> H forEach(Reader reader, H handle, int rowStart, int rowEnd) throws IOException, MappingException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy