public enum PageLayout extends java.lang.Enum<PageLayout>
Enum Constant | Description |
---|---|
ONE_COLUMN |
Display the pages in one column.
|
SINGLE_PAGE |
Display one page at a time.
|
TWO_COLUMN_LEFT |
Display the pages in two columns), with odd numbered pages on the left.
|
TWO_COLUMN_RIGHT |
Display the pages in two columns), with odd numbered pages on the right.
|
TWO_PAGE_LEFT |
Display the pages two at a time), with odd-numbered pages on the left.
|
TWO_PAGE_RIGHT |
Display the pages two at a time), with odd-numbered pages on the right.
|
Modifier and Type | Method | Description |
---|---|---|
static PageLayout |
fromString(java.lang.String value) |
|
java.lang.String |
stringValue() |
Returns the string value, as used in a PDF file.
|
static PageLayout |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static PageLayout[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageLayout SINGLE_PAGE
public static final PageLayout ONE_COLUMN
public static final PageLayout TWO_COLUMN_LEFT
public static final PageLayout TWO_COLUMN_RIGHT
public static final PageLayout TWO_PAGE_LEFT
public static final PageLayout TWO_PAGE_RIGHT
public static PageLayout[] values()
for (PageLayout c : PageLayout.values()) System.out.println(c);
public static PageLayout 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 static PageLayout fromString(java.lang.String value)
public java.lang.String stringValue()
Copyright © 2002–2018. All rights reserved.