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

nl.pvanassen.geckoboard.api.json.common.LabelValueItem Maven / Gradle / Ivy

The newest version!
package nl.pvanassen.geckoboard.api.json.common;

/**
 * Label - value item for funnel graph
 *
 * @author Paul van Assen
 */
public class LabelValueItem {

    private final String label;

    private final String value;

    public LabelValueItem(String label, String value) {
        super();
        this.label = label;
        this.value = value;
    }

    public String getLabel() {
        return label;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy