public enum Align extends Enum<Align> implements Key
Enum Constant and Description |
---|
center
the property sets the center alignment.
|
center_chartArea
the property sets the center of chart area alignment.
|
left
the property sets the left alignment.
|
left_chartArea
the property sets the left chart area alignment.
|
right
the property sets the right text alignment.
|
right_chartArea
the property sets the right chart area alignment.
|
Modifier and Type | Method and Description |
---|---|
static Align |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Align[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Align left
public static final Align left_chartArea
public static final Align center
public static final Align center_chartArea
public static final Align right_chartArea
public static final Align right
public static Align[] values()
for (Align c : Align.values()) System.out.println(c);
public static Align 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