com.github.fluorumlabs.disconnect.highcharts.SVGPathCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-highcharts Show documentation
Show all versions of disconnect-highcharts Show documentation
Highcharts API bindings for Disconnect Zero
package com.github.fluorumlabs.disconnect.highcharts;
import js.extras.JsEnum;
/**
* Possible path commands in a SVG path array.
*
*/
public abstract class SVGPathCommand extends JsEnum {
public static final SVGPathCommand A = JsEnum.of("a");
public static final SVGPathCommand C = JsEnum.of("c");
public static final SVGPathCommand H = JsEnum.of("h");
public static final SVGPathCommand L = JsEnum.of("l");
public static final SVGPathCommand M = JsEnum.of("m");
public static final SVGPathCommand Q = JsEnum.of("q");
public static final SVGPathCommand S = JsEnum.of("s");
public static final SVGPathCommand T = JsEnum.of("t");
public static final SVGPathCommand V = JsEnum.of("v");
public static final SVGPathCommand Z = JsEnum.of("z");
public static final SVGPathCommand A_CAP = JsEnum.of("A");
public static final SVGPathCommand C_CAP = JsEnum.of("C");
public static final SVGPathCommand H_CAP = JsEnum.of("H");
public static final SVGPathCommand L_CAP = JsEnum.of("L");
public static final SVGPathCommand M_CAP = JsEnum.of("M");
public static final SVGPathCommand Q_CAP = JsEnum.of("Q");
public static final SVGPathCommand S_CAP = JsEnum.of("S");
public static final SVGPathCommand T_CAP = JsEnum.of("T");
public static final SVGPathCommand V_CAP = JsEnum.of("V");
public static final SVGPathCommand Z_CAP = JsEnum.of("Z");
}