public static enum ChartFormat.Display extends java.lang.Enum<ChartFormat.Display>
Enum Constant and Description |
---|
DEFAULT
The areas are located in front of one another.
|
HUNDRED_PERCENT_STACKED
The areas stack up to 100%.
|
STACKED
The areas are stacked on top of one another.
|
Modifier and Type | Method and Description |
---|---|
static ChartFormat.Display |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChartFormat.Display[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartFormat.Display DEFAULT
public static final ChartFormat.Display STACKED
public static final ChartFormat.Display HUNDRED_PERCENT_STACKED
public static ChartFormat.Display[] values()
for (ChartFormat.Display c : ChartFormat.Display.values()) System.out.println(c);
public static ChartFormat.Display valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2018. All Rights Reserved.