public static enum Chart.Grouping extends Enum<Chart.Grouping>
| Enum Constant and Description |
|---|
CLUSTERED |
PERCENT_STACKED |
STACKED |
STANDARD |
| Modifier and Type | Method and Description |
|---|---|
static Chart.Grouping |
valueOf(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(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 © 2020. All rights reserved.