public static enum Style.WritingMode extends Enum<Style.WritingMode>
Enum Constant and Description |
---|
BottomToTopWritingMode |
LeftToRightWritingMode |
RightToLeftWritingMode |
TopToBottomWritingMode |
Modifier and Type | Method and Description |
---|---|
static Style.WritingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.WritingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.WritingMode TopToBottomWritingMode
public static final Style.WritingMode BottomToTopWritingMode
public static final Style.WritingMode LeftToRightWritingMode
public static final Style.WritingMode RightToLeftWritingMode
public static Style.WritingMode[] values()
for (Style.WritingMode c : Style.WritingMode.values()) System.out.println(c);
public static Style.WritingMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullRevision 4.0.15 / 20220727-0149