org.jxls.reader.OffsetRowCheck 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;
/**
* @author Leonid Vysochyn
*/
public interface OffsetRowCheck {
int getOffset();
void setOffset(int offset);
boolean isCheckSuccessful(Row row);
boolean isCheckSuccessful(XLSRowCursor cursor);
void addCellCheck(OffsetCellCheck cellCheck);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy