public static enum RotatedLabel.Direction extends java.lang.Enum<RotatedLabel.Direction>
| Enum Constant and Description |
|---|
LABEL_HORIZONTAL
Normal horizontal direction.
|
LABEL_VERTICAL_DOWN
Vertical, downwards (for left-to-right languages).
|
LABEL_VERTICAL_UP
Vertical, upwards (for left-to-right languages).
|
| Modifier and Type | Method and Description |
|---|---|
static RotatedLabel.Direction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RotatedLabel.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RotatedLabel.Direction LABEL_HORIZONTAL
public static final RotatedLabel.Direction LABEL_VERTICAL_UP
public static final RotatedLabel.Direction LABEL_VERTICAL_DOWN
public static RotatedLabel.Direction[] values()
for (RotatedLabel.Direction c : RotatedLabel.Direction.values()) System.out.println(c);
public static RotatedLabel.Direction 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