public static enum BarRenderer.BarOrientation extends java.lang.Enum<BarRenderer.BarOrientation>
Enum Constant and Description |
---|
OVERLAID
Bars are drawn "overlapping" one another, with taller bars being drawn behind
the shorter ones.
|
SIDE_BY_SIDE
Bars are drawn next to one another, grouped by iVal
|
STACKED
Bars are stacked on top of one another so that the sum of their yVals produces the final
height of that bar.
|
Modifier and Type | Method and Description |
---|---|
static BarRenderer.BarOrientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BarRenderer.BarOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BarRenderer.BarOrientation OVERLAID
public static final BarRenderer.BarOrientation STACKED
public static final BarRenderer.BarOrientation SIDE_BY_SIDE
public static BarRenderer.BarOrientation[] values()
for (BarRenderer.BarOrientation c : BarRenderer.BarOrientation.values()) System.out.println(c);
public static BarRenderer.BarOrientation 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 null