public enum Orientation extends java.lang.Enum<Orientation>
| Enum Constant and Description |
|---|
HORIZONTAL_LABELS_ABOVE
Horizontal scalebar and the labels are shown above the bar.
|
HORIZONTAL_LABELS_BELOW
Horizontal scalebar and the labels are shown below the bar.
|
VERTICAL_LABELS_LEFT
Vertical scalebar and the labels are shown left of the bar.
|
VERTICAL_LABELS_RIGHT
Vertical scalebar and the labels are shown right of the bar.
|
| Modifier and Type | Method and Description |
|---|---|
static Orientation |
fromString(java.lang.String label)
Get a direction from its label.
|
java.lang.String |
getLabel() |
boolean |
isHorizontal() |
static Orientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Orientation HORIZONTAL_LABELS_BELOW
public static final Orientation HORIZONTAL_LABELS_ABOVE
public static final Orientation VERTICAL_LABELS_LEFT
public static final Orientation VERTICAL_LABELS_RIGHT
public static Orientation[] values()
for (Orientation c : Orientation.values()) System.out.println(c);
public static Orientation 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 nullpublic static Orientation fromString(java.lang.String label)
label - the direction labelpublic final boolean isHorizontal()
public final java.lang.String getLabel()