org.odftoolkit.simple.chart
public enum ChartType extends Enum<ChartType>
Enum Constant and Description |
---|
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
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nullCopyright © 2010-2014 The Apache Software Foundation. All Rights Reserved.