public static enum Response.PagingDirection extends Enum<Response.PagingDirection>
| Enum Constant and Description |
|---|
NEXT
Indicates that paging is being performed in the forward direction.
|
PREVIOUS
Indicates that paging is being performed in the backward direction.
|
| Modifier and Type | Method and Description |
|---|---|
static Response.PagingDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Response.PagingDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Response.PagingDirection NEXT
public static final Response.PagingDirection PREVIOUS
public static Response.PagingDirection[] values()
for (Response.PagingDirection c : Response.PagingDirection.values()) System.out.println(c);
public static Response.PagingDirection 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 © 2013. All Rights Reserved.