|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ChartType>
org.odftoolkit.simple.chart.ChartType
public enum ChartType
The value set of chart type.
Enum Constant Summary | |
---|---|
AREA
AREA, The area type chart |
|
BAR
BAR, The bar type chart |
|
LINE
LINE, The line type chart |
|
PIE
PIE, The pie type chart |
|
RADAR
RADAR, The radar type chart |
|
RING
RING, The ring type chart |
|
SCATTER
SCATTER, The scatter type chart |
|
STOCK
STOCK, The stock type chart |
Method Summary | |
---|---|
static ChartType |
enumValueOf(String mString)
Returns the enum of ChartType string. |
String |
toString()
|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ChartType BAR
public static final ChartType PIE
public static final ChartType RING
public static final ChartType AREA
public static final ChartType LINE
public static final ChartType SCATTER
public static final ChartType RADAR
public static final ChartType STOCK
Method Detail |
---|
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 name
NullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<ChartType>
public static ChartType enumValueOf(String mString)
mString
- the string value
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |