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

net.sf.jxls.reader.XLSBlockReader Maven / Gradle / Ivy

Go to download

jXLS is a small and easy-to-use Java library for generating Excel files using XLS templates

There is a newer version: 1.0.6
Show newest version
package net.sf.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);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy