Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
public interface Page<T> extends Iterable<T> {

/**
* Returns the number of the current page. Is always positive and less that {@code Page#getTotalPages()}.
* Returns the number of the current page. Is non-negative and less that {@code Page#getTotalPages()}.
*
* @return the number of the current page
*/
Expand Down Expand Up @@ -117,4 +117,4 @@ public interface Page<T> extends Iterable<T> {
* @return
*/
Sort getSort();
}
}