public enum ChartTypeValueCollection extends java.lang.Enum<ChartTypeValueCollection>
枚举常量和说明 |
---|
AREA |
BAR |
BUBBLE |
COLUMN |
COMB |
DONUT |
FUNNEL |
GANTT |
GIS |
LINE |
MAP |
METER |
PIE |
RADAR |
RANGE |
STOCK |
XYSCATTER |
限定符和类型 | 方法和说明 |
---|---|
static ChartTypeValueCollection |
parse(int p)
将整数转换成枚举类型
|
int |
toInt() |
static ChartTypeValueCollection |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static ChartTypeValueCollection[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final ChartTypeValueCollection COLUMN
public static final ChartTypeValueCollection LINE
public static final ChartTypeValueCollection BAR
public static final ChartTypeValueCollection PIE
public static final ChartTypeValueCollection AREA
public static final ChartTypeValueCollection XYSCATTER
public static final ChartTypeValueCollection BUBBLE
public static final ChartTypeValueCollection RADAR
public static final ChartTypeValueCollection STOCK
public static final ChartTypeValueCollection METER
public static final ChartTypeValueCollection RANGE
public static final ChartTypeValueCollection COMB
public static final ChartTypeValueCollection GANTT
public static final ChartTypeValueCollection DONUT
public static final ChartTypeValueCollection MAP
public static final ChartTypeValueCollection GIS
public static final ChartTypeValueCollection FUNNEL
public static ChartTypeValueCollection[] values()
for (ChartTypeValueCollection c : ChartTypeValueCollection.values()) System.out.println(c);
public static ChartTypeValueCollection valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值public static ChartTypeValueCollection parse(int p)
p
- 待转换的整数public int toInt()