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