public enum PageWritingMode extends Enum<PageWritingMode> implements AttributeValue
| Enum Constant and Description |
|---|
LR
"Shorthand for lr-tb"
|
LRTB
left to right then top to bottom
|
PAGE
page means inherit
|
RL
"Shorthand for rl-tb"
|
RLTB
right to left then top to bottom
|
TB
"Shorthand for tb-rl"
|
TBLR
top to bottom then left to right
|
TBRL
top to bottom then right to left
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static PageWritingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageWritingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageWritingMode LR
public static final PageWritingMode LRTB
public static final PageWritingMode PAGE
public static final PageWritingMode RL
public static final PageWritingMode RLTB
public static final PageWritingMode TB
public static final PageWritingMode TBLR
public static final PageWritingMode TBRL
public static PageWritingMode[] values()
for (PageWritingMode c : PageWritingMode.values()) System.out.println(c);
public static PageWritingMode 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 nullpublic String getValue()
getValue in interface AttributeValueCopyright © 2016–2021. All rights reserved.