public enum CustomPlotType extends java.lang.Enum<CustomPlotType>
枚举常量和说明 |
---|
AREA |
BUBBLE |
COLUMN |
CUVETTE |
DIFFERENT_PIE |
LINE |
PIE |
POINTER_180 |
POINTER_360 |
RADAR |
RING |
SAME_PIE |
SCATTER |
SLOT |
STACK_RADAR |
限定符和类型 | 方法和说明 |
---|---|
java.lang.String |
getType() |
static CustomPlotType[] |
getTypes() |
static CustomPlotType |
parse(java.lang.String type) |
static CustomPlotType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static CustomPlotType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final CustomPlotType COLUMN
public static final CustomPlotType LINE
public static final CustomPlotType AREA
public static final CustomPlotType PIE
public static final CustomPlotType SAME_PIE
public static final CustomPlotType DIFFERENT_PIE
public static final CustomPlotType POINTER_360
public static final CustomPlotType POINTER_180
public static final CustomPlotType RING
public static final CustomPlotType SLOT
public static final CustomPlotType CUVETTE
public static final CustomPlotType RADAR
public static final CustomPlotType STACK_RADAR
public static final CustomPlotType SCATTER
public static final CustomPlotType BUBBLE
public static CustomPlotType[] values()
for (CustomPlotType c : CustomPlotType.values()) System.out.println(c);
public static CustomPlotType valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值public java.lang.String getType()
public static CustomPlotType parse(java.lang.String type)
public static CustomPlotType[] getTypes()