public static enum DynamicElement.ElementType extends java.lang.Enum<DynamicElement.ElementType>
枚举常量和说明 |
---|
BarChart
直方图表类型。
|
LINE
线类型。
|
LineChar
折线图表类型。
|
PieChart
饼图图表类型。
|
POINT
点类型。
|
POLYGON
面类型。
|
TEXT
文本类型。
|
限定符和类型 | 方法和说明 |
---|---|
static DynamicElement.ElementType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static DynamicElement.ElementType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final DynamicElement.ElementType POINT
public static final DynamicElement.ElementType LINE
public static final DynamicElement.ElementType POLYGON
public static final DynamicElement.ElementType TEXT
public static final DynamicElement.ElementType LineChar
public static final DynamicElement.ElementType BarChart
public static final DynamicElement.ElementType PieChart
public static DynamicElement.ElementType[] values()
for (DynamicElement.ElementType c : DynamicElement.ElementType.values()) System.out.println(c);
public static DynamicElement.ElementType valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值