
nl.pvanassen.geckoboard.api.json.common.TextValueItem 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;
/**
* Text int value item holder for generic use
*
* @author Paul van Assen
*/
public class TextValueItem {
private final String text;
private final int value;
public TextValueItem(String text, int value) {
super();
this.text = text;
this.value = value;
}
public String getText() {
return text;
}
public int getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy