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