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

com.fredericboisguerin.excel.common.ExcelRow Maven / Gradle / Ivy

The newest version!
package com.fredericboisguerin.excel.common;

import java.util.HashMap;
import java.util.Map;

/**
 * Created by fboisguerin on 22/07/2015.
 */
public class ExcelRow {

    private final Map informationValuesMap = new HashMap<>();

    public ExcelRow() {
    }

    public Map getInformationValuesMap() {
        return informationValuesMap;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy