Page Summary
-
PageDirection provides constants for specifying the direction of pagination over data sets.
-
The constants available are NEXT, NONE, and PREV, each representing a different pagination direction or lack thereof.
public final class PageDirection extends Object
Direction constants for pagination over data sets.
Nested Class Summary
| @interface | PageDirection.Direction | Direction constants for pagination over data sets. | |
Constant Summary
| int | NEXT | Direction advancing toward the end of the data set. |
| int | NONE | Constant indicating that no pagination is occurring. |
| int | PREV | Direction advancing toward the beginning of the data set. |
Inherited Method Summary
Constants
public static final int NEXT
Direction advancing toward the end of the data set.
Constant Value: 0
public static final int NONE
Constant indicating that no pagination is occurring.
Constant Value: -1
public static final int PREV
Direction advancing toward the beginning of the data set.
Constant Value: 1