public enum ReadingOrder extends java.lang.Enum<ReadingOrder>
| Enum Constant and Description |
|---|
Context
Specifies the context order.
|
LeftToRight
Specifies left to right order.
|
RightToLeft
Specifies right to left order.
|
| Modifier and Type | Method and Description |
|---|---|
static ReadingOrder |
forValue(int value) |
int |
getValue() |
static ReadingOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReadingOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadingOrder Context
public static final ReadingOrder LeftToRight
public static final ReadingOrder RightToLeft
public static ReadingOrder[] values()
for (ReadingOrder c : ReadingOrder.values()) System.out.println(c);
public static ReadingOrder 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 int getValue()
public static ReadingOrder forValue(int value)