
com.fredericboisguerin.excel.description.WorkbookDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-reader-writer Show documentation
Show all versions of excel-reader-writer Show documentation
A library to read/write excel files with simple descriptions of the model
package com.fredericboisguerin.excel.description;
import java.util.HashMap;
import java.util.Map;
/**
* Created by fboisguerin on 23/07/2015.
*/
public class WorkbookDescription {
private final Map sheetIndexSheetInfoMap = new HashMap<>();
public void addSheetInfo(int sheetIdx, SheetDescription sheetInfo) {
sheetIndexSheetInfoMap.put(sheetIdx, sheetInfo);
}
public Map getSheetIndexSheetInfoMap() {
return sheetIndexSheetInfoMap;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy