
nl.pvanassen.geckoboard.api.json.bulletgraph.Point 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.bulletgraph;
import nl.pvanassen.geckoboard.api.error.ValidationException;
/**
* Bullet graph comparative point
*
* @author Paul van Assen
*/
public class Point {
private final String point;
public Point(String point) {
this.point = point;
}
public void validate() throws ValidationException {
if (point == null) {
throw new ValidationException("point", "Point cannot be null");
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy