public static enum MarkPageRequest.Navigation extends Enum<MarkPageRequest.Navigation>
| Enum Constant and Description |
|---|
NEXT
Request the next page (Elements after the mark).
|
PREVIOUS
Requests the previous page (Elements previous to the mark).
|
| Modifier and Type | Method and Description |
|---|---|
static MarkPageRequest.Navigation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MarkPageRequest.Navigation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MarkPageRequest.Navigation NEXT
public static final MarkPageRequest.Navigation PREVIOUS
public static MarkPageRequest.Navigation[] values()
for (MarkPageRequest.Navigation c : MarkPageRequest.Navigation.values()) System.out.println(c);
public static MarkPageRequest.Navigation 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 nullCopyright © 2014. All Rights Reserved.