net.sf.jxls.reader.XLSLoopBlockReader 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 is a small and easy-to-use Java library for generating Excel files using XLS templates
package net.sf.jxls.reader;
import java.util.List;
/**
* Interface to read repetitive block of excel rows
* @author Leonid Vysochyn
*/
public interface XLSLoopBlockReader extends XLSBlockReader {
void setLoopBreakCondition(SectionCheck condition);
SectionCheck getLoopBreakCondition();
void addBlockReader(XLSBlockReader reader);
List getBlockReaders();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy