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

com.fredericboisguerin.excel.description.WorkbookDescription Maven / Gradle / Ivy

There is a newer version: 2.1
Show newest version
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