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

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

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy