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

com.github.kunalk16.excel.model.factory.ExcelXMLData Maven / Gradle / Ivy

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