public static enum PageAreaProperties.Alignment extends Enum<PageAreaProperties.Alignment>
| Enum Constant and Description |
|---|
BOTTOM
Aligns toward the bottom of the page, above the footer
|
TOP
Aligns toward the top of the page, below the header
|
| Modifier and Type | Method and Description |
|---|---|
static PageAreaProperties.Alignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageAreaProperties.Alignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageAreaProperties.Alignment TOP
public static final PageAreaProperties.Alignment BOTTOM
public static PageAreaProperties.Alignment[] values()
for (PageAreaProperties.Alignment c : PageAreaProperties.Alignment.values()) System.out.println(c);
public static PageAreaProperties.Alignment 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 null