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