com.fredericboisguerin.excel.common.Information 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 22/07/2015.
*/
public class Information {
private final String label;
private final InformationType type;
public Information(String label, InformationType type) {
this.label = label;
this.type = type;
}
public String getLabel() {
return label;
}
public InformationType getType() {
return type;
}
}