public static enum CommonSparkChart.Type extends java.lang.Enum<CommonSparkChart.Type>
AREA: displays the data items using an areaBAR: displays the data items as barsFLOATING_BAR: displays the data items as floating bars. This type of
spark chart requires data that contains values for the float
offset.LINE: displays the data items using a line| Enum Constant and Description |
|---|
AREA |
BAR |
FLOATING_BAR |
LINE |
| Modifier and Type | Method and Description |
|---|---|
static CommonSparkChart.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CommonSparkChart.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommonSparkChart.Type AREA
public static final CommonSparkChart.Type BAR
public static final CommonSparkChart.Type FLOATING_BAR
public static final CommonSparkChart.Type LINE
public static CommonSparkChart.Type[] values()
for (CommonSparkChart.Type c : CommonSparkChart.Type.values()) System.out.println(c);
public static CommonSparkChart.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null