public enum PageLayoutMode extends Enum<PageLayoutMode>
| Enum Constant and Description |
|---|
AUTO_FIT_COLUMNS_IN_WINDOW |
CUSTOM_COLUMNS |
SIDE_BY_SIDE |
SIDE_BY_SIDE_CONTINUOUS |
SINGLE_PAGE |
SINGLE_PAGE_CONTINUOUS |
| Modifier and Type | Method and Description |
|---|---|
static PageLayoutMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageLayoutMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageLayoutMode SINGLE_PAGE
public static final PageLayoutMode SINGLE_PAGE_CONTINUOUS
public static final PageLayoutMode SIDE_BY_SIDE
public static final PageLayoutMode SIDE_BY_SIDE_CONTINUOUS
public static final PageLayoutMode AUTO_FIT_COLUMNS_IN_WINDOW
public static final PageLayoutMode CUSTOM_COLUMNS
public static PageLayoutMode[] values()
for (PageLayoutMode c : PageLayoutMode.values()) System.out.println(c);
public static PageLayoutMode 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