All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jxls.reader.XLSLoopBlockReader Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package org.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 - 2024 Weber Informatics LLC | Privacy Policy