com.github.kunalk16.excel.model.factory.ExcelXMLData 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;
import com.github.kunalk16.excel.model.jaxb.sharedstrings.SharedStringType;
import com.github.kunalk16.excel.model.jaxb.workbook.WorkBookType;
import com.github.kunalk16.excel.model.jaxb.worksheet.WorkSheetType;
import java.util.List;
public class ExcelXMLData {
private final WorkBookType workBook;
private final SharedStringType sharedString;
private final List sheets;
public ExcelXMLData(WorkBookType workBook, SharedStringType sharedString, List sheets) {
this.workBook = workBook;
this.sharedString = sharedString;
this.sheets = sheets;
}
public WorkBookType getWorkBook() {
return workBook;
}
public SharedStringType getSharedString() {
return sharedString;
}
public List getSheets() {
return sheets;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy