public static enum BarRenderer.Style extends Enum<BarRenderer.Style>
Enum Constant and Description |
---|
OVERLAID |
SIDE_BY_SIDE |
STACKED |
Modifier and Type | Method and Description |
---|---|
static BarRenderer.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BarRenderer.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BarRenderer.Style OVERLAID
public static final BarRenderer.Style STACKED
public static final BarRenderer.Style SIDE_BY_SIDE
public static BarRenderer.Style[] values()
for (BarRenderer.Style c : BarRenderer.Style.values()) System.out.println(c);
public static BarRenderer.Style 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