public enum ReadingOrder extends java.lang.Enum<ReadingOrder>
Enum Constant and Description |
---|
CONTEXT
The reading order is Context(Default).
|
LEFT_TO_RIGHT
The reading order is Left To Right.
|
RIGHT_TO_LEFT
The reading order is Right To Left.
|
Modifier and Type | Method and Description |
---|---|
static ReadingOrder |
forLong(long code) |
short |
getCode() |
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 LEFT_TO_RIGHT
public static final ReadingOrder RIGHT_TO_LEFT
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 short getCode()
public static ReadingOrder forLong(long code)
Copyright 2022 The Apache Software Foundation or its licensors, as applicable.