org.jxls.reader.XLSRowCursor 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 org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
/**
* @author Leonid Vysochyn
*/
public interface XLSRowCursor {
int getCurrentRowNum();
Row getCurrentRow();
Sheet getSheet();
void setSheet(Sheet sheet);
String getSheetName();
void setSheetName(String sheetName);
Row next();
boolean hasNext();
void reset();
void setCurrentRowNum(int rowNum);
void moveForward();
void moveBackward();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy