public static enum Document3.ORIENTATION extends java.lang.Enum<Document3.ORIENTATION>
Enum Constant and Description |
---|
ALL_LTR
All text is left-to-right oriented.
|
ALL_RTL
All text is right-to-left oriented.
|
DIFFER
different texts/segments have different orientation, depending on language/locale.
|
Modifier and Type | Method and Description |
---|---|
static Document3.ORIENTATION |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Document3.ORIENTATION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Document3.ORIENTATION ALL_LTR
public static final Document3.ORIENTATION ALL_RTL
public static final Document3.ORIENTATION DIFFER
public static Document3.ORIENTATION[] values()
for (Document3.ORIENTATION c : Document3.ORIENTATION.values()) System.out.println(c);
public static Document3.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 null