net.sf.jxls.controller.SheetCellFinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls-core Show documentation
Show all versions of jxls-core Show documentation
jXLS is a small and easy-to-use Java library for generating Excel files using XLS templates
package net.sf.jxls.controller;
import java.util.List;
/**
* This interface defines methods for searching transformed Cells inside a single sheet
* @author Leonid Vysochyn
*/
public interface SheetCellFinder {
List findCell(String cellName);
List findCell(int rowNum, int colNum);
}