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

net.sf.jxls.controller.WorkbookCellFinder 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.controller;

import java.util.List;

/**
 * Defines interface to find transformed cells in a workbook
 * @author Leonid Vysochyn
 */
public interface WorkbookCellFinder {

    List findCell(String sheetName, int rowNum, int colNum);

    List findCell(String sheetName, String cellName);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy