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