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