public static enum Chart.CHART_TYPE extends Enum<Chart.CHART_TYPE>
| Enum Constant and Description |
|---|
CT_AREA |
CT_BAR |
CT_COLUMN |
CT_HISTOGRAM |
CT_LINE |
CT_PIE |
CT_SCATTER |
CT_TREND |
| Modifier and Type | Method and Description |
|---|---|
static Chart.CHART_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Chart.CHART_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Chart.CHART_TYPE CT_AREA
public static final Chart.CHART_TYPE CT_BAR
public static final Chart.CHART_TYPE CT_COLUMN
public static final Chart.CHART_TYPE CT_HISTOGRAM
public static final Chart.CHART_TYPE CT_LINE
public static final Chart.CHART_TYPE CT_PIE
public static final Chart.CHART_TYPE CT_SCATTER
public static final Chart.CHART_TYPE CT_TREND
public static Chart.CHART_TYPE[] values()
for (Chart.CHART_TYPE c : Chart.CHART_TYPE.values()) System.out.println(c);
public static Chart.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 © 2019 DolphinDB. All rights reserved.