com.fredericboisguerin.excel.common.InformationValue 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
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;
}
}