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