
com.github.kunalk16.excel.model.user.Sheet Maven / Gradle / Ivy
package com.github.kunalk16.excel.model.user;
import java.util.Collection;
public interface Sheet {
String getSheetName();
Collection getRows();
Row getRowByIndex(int index);
Cell getCell(int rowIndex, String columnName);
Cell getCell(int rowIndex, int columnIndex);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy