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