public static enum GraphResponse.PagingDirection extends java.lang.Enum<GraphResponse.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 GraphResponse.PagingDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GraphResponse.PagingDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphResponse.PagingDirection NEXT
public static final GraphResponse.PagingDirection PREVIOUS
public static GraphResponse.PagingDirection[] values()
for (GraphResponse.PagingDirection c : GraphResponse.PagingDirection.values()) System.out.println(c);
public static GraphResponse.PagingDirection valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null