com.github.kunalk16.excel.model.factory.ExcelNamedCellLocation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lightExcelReader Show documentation
Show all versions of lightExcelReader Show documentation
A lightweight Java framework to read .xlsx excel files.
The newest version!
package com.github.kunalk16.excel.model.factory;
public class ExcelNamedCellLocation {
private final String sheetName;
private final String column;
private final int row;
public ExcelNamedCellLocation(String sheetName, String column, int row) {
this.sheetName = sheetName;
this.column = column;
this.row = row;
}
public String getSheetName() {
return sheetName;
}
public String getColumn() {
return column;
}
public int getRow() {
return row;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy