public enum ChartType extends Enum<ChartType>
| Enum Constant and Description |
|---|
AREA |
BAR |
BUBBLE |
CONE |
DIFFERENCE |
LINE |
METER |
PIE |
PYRAMID |
SCATTER |
STOCK |
TUBE |
| Modifier and Type | Method and Description |
|---|---|
static ChartType |
fromInt(int enumValue) |
String |
getBIRTType() |
int |
getEnumValue() |
static ChartType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartType PIE
public static final ChartType BAR
public static final ChartType LINE
public static final ChartType AREA
public static final ChartType METER
public static final ChartType SCATTER
public static final ChartType STOCK
public static final ChartType BUBBLE
public static final ChartType DIFFERENCE
public static final ChartType TUBE
public static final ChartType CONE
public static final ChartType PYRAMID
public static ChartType[] values()
for (ChartType c : ChartType.values()) System.out.println(c);
public static ChartType 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 nullpublic int getEnumValue()
public static ChartType fromInt(int enumValue)
public String getBIRTType()
? Copyright 2013 BMC Software, Inc.