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

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

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

/**
 * Created by fboisguerin on 03/08/2015.
 */
public class InformationValue {

    private final Object value;

    public InformationValue(Object value) {
        this.value = value;
    }

    public Object getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy