public static enum Chart.Grouping extends java.lang.Enum<Chart.Grouping>
| Enum Constant and Description |
|---|
CLUSTERED |
PERCENT_STACKED |
STACKED |
STANDARD |
| Modifier and Type | Method and Description |
|---|---|
static Chart.Grouping |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Chart.Grouping[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Chart.Grouping STANDARD
public static final Chart.Grouping STACKED
public static final Chart.Grouping PERCENT_STACKED
public static final Chart.Grouping CLUSTERED
public static Chart.Grouping[] values()
for (Chart.Grouping c : Chart.Grouping.values()) System.out.println(c);
public static Chart.Grouping 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 © 2005-2010 Potix Corporation. All Rights Reserved.