public enum PDFPageLayout extends Enum<PDFPageLayout>
| Enum Constant and Description |
|---|
ONE_COLUMN
Constant for displaying pages in a single column.
|
SINGLE_PAGE
Constant for displaying one page at a time.
|
TWO_COLUMN_LEFT
Constant for displaying pages in two columns, with odd-numbered
pages on the left-side column.
|
TWO_COLUMN_RIGHT
Constant for displaying pages in two columns, with odd-numbered
pages on the right-side column.
|
TWO_PAGE_LEFT
Constant for displaying two pages at a time, with odd-numbered
pages on the left.
|
TWO_PAGE_RIGHT
Constant for displaying two pages at a time, with odd-numbered
pages on the right.
|
| Modifier and Type | Method and Description |
|---|---|
static PDFPageLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PDFPageLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PDFPageLayout SINGLE_PAGE
public static final PDFPageLayout ONE_COLUMN
public static final PDFPageLayout TWO_COLUMN_LEFT
public static final PDFPageLayout TWO_COLUMN_RIGHT
public static final PDFPageLayout TWO_PAGE_LEFT
public static final PDFPageLayout TWO_PAGE_RIGHT
public static PDFPageLayout[] values()
for (PDFPageLayout c : PDFPageLayout.values()) System.out.println(c);
public static PDFPageLayout 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