public static enum SChart.ChartType extends Enum<SChart.ChartType>
Enum Constant and Description |
---|
AREA |
BAR |
BUBBLE |
COLUMN |
DOUGHNUT |
LINE |
OF_PIE |
PIE |
RADAR |
SCATTER |
STOCK |
SURFACE |
Modifier and Type | Method and Description |
---|---|
static SChart.ChartType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SChart.ChartType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SChart.ChartType AREA
public static final SChart.ChartType BAR
public static final SChart.ChartType BUBBLE
public static final SChart.ChartType COLUMN
public static final SChart.ChartType DOUGHNUT
public static final SChart.ChartType LINE
public static final SChart.ChartType OF_PIE
public static final SChart.ChartType PIE
public static final SChart.ChartType RADAR
public static final SChart.ChartType SCATTER
public static final SChart.ChartType STOCK
public static final SChart.ChartType SURFACE
public static SChart.ChartType[] values()
for (SChart.ChartType c : SChart.ChartType.values()) System.out.println(c);
public static SChart.ChartType 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 © 2020. All rights reserved.