Java org.springframework.data.domain PageRequest fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.data.domain PageRequest fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.data.domain PageRequest.

The text is from its open source code.

Subclass

org.springframework.data.domain.PageRequest has subclasses.
Click this link to see all its subclasses.

Constructor

PageRequest(int page, int size, Sort sort)
Creates a new PageRequest with sort parameters applied.

Method

longgetOffset()
intgetPageNumber()
intgetPageSize()
SortgetSort()
PageRequestof(int page, int size)
Creates a new unsorted PageRequest .
PageRequestof(int page, int size, Direction direction, String... properties)
Creates a new PageRequest with sort direction and properties applied.
PageRequestof(int page, int size, Sort sort)
Creates a new PageRequest with sort parameters applied.