public static enum BarChart.Type extends Enum<BarChart.Type>
| Modifier and Type | Method and Description |
|---|---|
static BarChart.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BarChart.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, getDeclaringClass, getEnumValues, hashCode, name, ordinal, setEnumValues, toString, valueOfpublic static final BarChart.Type DEFAULT
public static final BarChart.Type STACKED
public static final BarChart.Type HEAPED
public static BarChart.Type[] values()
for (BarChart.Type c : BarChart.Type.values()) System.out.println(c);
public static BarChart.Type 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 null