public enum ChartJsChartType extends Enum<ChartJsChartType>
| Enum Constant and Description |
|---|
BAR |
BUBBLE |
LINE |
PIE |
POLAR_AREA |
RADAR |
SCATTER |
| Modifier and Type | Method and Description |
|---|---|
static ChartJsChartType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartJsChartType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartJsChartType LINE
public static final ChartJsChartType BAR
public static final ChartJsChartType RADAR
public static final ChartJsChartType PIE
public static final ChartJsChartType POLAR_AREA
public static final ChartJsChartType BUBBLE
public static final ChartJsChartType SCATTER
public static ChartJsChartType[] values()
for (ChartJsChartType c : ChartJsChartType.values()) System.out.println(c);
public static ChartJsChartType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.