public enum Directionality extends java.lang.Enum<Directionality>
| Enum Constant and Description |
|---|
AUTO
Automatic.
|
INHERITED
Inherited from the proper parent.
|
LTR
Left-to-Right.
|
RTL
Right-to-Left.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getPrefix() |
java.lang.String |
toString() |
static Directionality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Directionality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Directionality AUTO
public static final Directionality LTR
public static final Directionality RTL
public static final Directionality INHERITED
public static Directionality[] values()
for (Directionality c : Directionality.values()) System.out.println(c);
public static Directionality 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 java.lang.String getPrefix()
public java.lang.String toString()
toString in class java.lang.Enum<Directionality>