
nl.pvanassen.geckoboard.api.json.common.LabelValueItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geckoboard-api Show documentation
Show all versions of geckoboard-api Show documentation
A Java API to generate highchart json on the server side.
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