org.jxls.reader.XLSBlockReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls-reader Show documentation
Show all versions of jxls-reader Show documentation
Jxls Reader module to read Excel files
package org.jxls.reader;
import java.util.Map;
/**
* Interface to read block of excel rows
* @author Leonid Vysochyn
*/
public interface XLSBlockReader {
XLSReadStatus read(XLSRowCursor cursor, Map beans);
int getStartRow();
void setStartRow(int startRow);
int getEndRow();
void setEndRow(int endRow);
void setConvertUtilsBeanProvider(ConvertUtilsBeanProvider convertUtilsBeanProvider);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy