- Type Parameters:
T
- The type of elements on the page- Record Components:
content
- The page content, that is, the query results, in ordercursors
- A list ofPageRequest.Cursor
instances for result, in ordertotalElements
- The total number of elements across all pages that can be requested for the querypageRequest
- Thepage request
for which this page was obtainednextPageRequest
- Apage request
for the next page of resultspreviousPageRequest
- Apage request
for the previous page of results
- All Implemented Interfaces:
CursoredPage<T>
,Page<T>
,Iterable<T>
CursoredPage
.
This may be used to simplify implementation of a repository interface.-
Constructor Summary
ConstructorDescriptionCursoredPageRecord
(List<T> content, List<PageRequest.Cursor> cursors, long totalElements, PageRequest<T> pageRequest, PageRequest<T> nextPageRequest, PageRequest<T> previousPageRequest) Creates an instance of aCursoredPageRecord
record class. -
Method Summary
Modifier and TypeMethodDescriptioncontent()
Returns the value of thecontent
record component.cursor
(int index) Returns aCursor
for key values at the specified position.cursors()
Returns the value of thecursors
record component.final boolean
Indicates whether some other object is "equal to" this one.boolean
Returns whether thePage
has content at all.final int
hashCode()
Returns a hash code value for this object.boolean
hasNext()
Returnstrue
if it is known that there are more results or that it is necessary to request a next page to determine whether there are more results, so thatPage.nextPageRequest()
will definitely not returnnull
.boolean
Returnstrue
when it is possible to navigate to a previous page of results or if it is necessary to request a previous page in order to determine whether there are more previous results.boolean
Returnstrue
if thePage.pageRequest()
specified that the total number of elements should be retrieved from the database, and that it is therefore safe to callPage.totalElements()
orPage.totalPages()
.iterator()
Returns the value of thenextPageRequest
record component.<E> PageRequest
<E> nextPageRequest
(Class<E> entityClass) Returns a request for the next page ifPage.hasNext()
indicates there might be a next page.int
Returns the number of elements on thisPage
, which must be no larger than the maximumsize
of the page request.Returns the value of thepageRequest
record component.<E> PageRequest
<E> pageRequest
(Class<E> entityClass) Returns the page request for which this page was obtained.Returns the value of thepreviousPageRequest
record component.<E> PageRequest
<E> previousPageRequest
(Class<E> entityClass) Returns a request for the previous page, ifPage.hasPrevious()
indicates there might be a previous page.final String
toString()
Returns a string representation of this record class.long
Returns the value of thetotalElements
record component.long
Returns the total number of pages of query results, if thePage.pageRequest()
specified that the total should be retrieved from the database.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
CursoredPageRecord
public CursoredPageRecord(List<T> content, List<PageRequest.Cursor> cursors, long totalElements, PageRequest<T> pageRequest, PageRequest<T> nextPageRequest, PageRequest<T> previousPageRequest) Creates an instance of aCursoredPageRecord
record class.- Parameters:
content
- the value for thecontent
record componentcursors
- the value for thecursors
record componenttotalElements
- the value for thetotalElements
record componentpageRequest
- the value for thepageRequest
record componentnextPageRequest
- the value for thenextPageRequest
record componentpreviousPageRequest
- the value for thepreviousPageRequest
record component
-
-
Method Details
-
hasContent
-
numberOfElements
public int numberOfElements()Description copied from interface:Page
Returns the number of elements on thisPage
, which must be no larger than the maximumsize
of the page request. If the number of elements in the page is smaller than the maximum page size, then there are no subsequent pages of data to read.- Specified by:
numberOfElements
in interfacePage<T>
- Returns:
- the number of elements on this
Page
.
-
hasNext
public boolean hasNext()Description copied from interface:Page
Returnstrue
if it is known that there are more results or that it is necessary to request a next page to determine whether there are more results, so thatPage.nextPageRequest()
will definitely not returnnull
. -
hasPrevious
public boolean hasPrevious()Description copied from interface:CursoredPage
Returnstrue
when it is possible to navigate to a previous page of results or if it is necessary to request a previous page in order to determine whether there are more previous results.- Specified by:
hasPrevious
in interfaceCursoredPage<T>
- Specified by:
hasPrevious
in interfacePage<T>
- Returns:
false
if the current page is empty or if it is known that there is not a previous page.
-
pageRequest
Description copied from interface:Page
Returns the page request for which this page was obtained.
This method is useful when the query language is used to return a result of different type to the entity class that was queried, allowing the subsequent
PageRequest
to be cast back to the type of entity class that was queried.- Specified by:
pageRequest
in interfacePage<T>
- Type Parameters:
E
- entity class of the attributes that are used as sort criteria.- Parameters:
entityClass
- entity class of the attributes that are used as sort criteria.- Returns:
- the request for the current page; will never be
null
.
-
nextPageRequest
Returns the value of thenextPageRequest
record component.- Specified by:
nextPageRequest
in interfaceCursoredPage<T>
- Specified by:
nextPageRequest
in interfacePage<T>
- Returns:
- the value of the
nextPageRequest
record component
-
nextPageRequest
Description copied from interface:Page
Returns a request for the next page if
Page.hasNext()
indicates there might be a next page.This method is useful when the query language is used to return a result of different type to the entity class that was queried, allowing the subsequent
PageRequest
to be cast back to the type of entity class that was queried.- Specified by:
nextPageRequest
in interfacePage<T>
- Type Parameters:
E
- entity class of the attributes that are used as sort criteria.- Parameters:
entityClass
- entity class of the attributes that are used as sort criteria.- Returns:
- a request for the next page.
-
previousPageRequest
Returns the value of thepreviousPageRequest
record component.- Specified by:
previousPageRequest
in interfaceCursoredPage<T>
- Specified by:
previousPageRequest
in interfacePage<T>
- Returns:
- the value of the
previousPageRequest
record component
-
previousPageRequest
Description copied from interface:Page
Returns a request for the previous page, if
Page.hasPrevious()
indicates there might be a previous page.This method is useful when the query language is used to return a result of different type to the entity class that was queried, allowing the subsequent
PageRequest
to be cast back to the type of entity class that was queried.- Specified by:
previousPageRequest
in interfacePage<T>
- Type Parameters:
E
- entity class of the attributes that are used as sort criteria.- Parameters:
entityClass
- entity class of the attributes that are used as sort criteria.- Returns:
- a request for the previous page.
-
iterator
-
cursor
Description copied from interface:CursoredPage
Returns aCursor
for key values at the specified position.- Specified by:
cursor
in interfaceCursoredPage<T>
- Parameters:
index
- position (0 is first) of a result on the page.- Returns:
- cursor for key values at the specified position.
-
hasTotals
public boolean hasTotals()Description copied from interface:Page
Returnstrue
if thePage.pageRequest()
specified that the total number of elements should be retrieved from the database, and that it is therefore safe to callPage.totalElements()
orPage.totalPages()
. -
totalElements
public long totalElements()Returns the value of thetotalElements
record component.- Specified by:
totalElements
in interfacePage<T>
- Returns:
- the value of the
totalElements
record component
-
totalPages
public long totalPages()Description copied from interface:Page
Returns the total number of pages of query results, if thePage.pageRequest()
specified that the total should be retrieved from the database.- Specified by:
totalPages
in interfacePage<T>
- Returns:
- the total number of pages.
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
content
-
cursors
-
pageRequest
Returns the value of thepageRequest
record component.- Specified by:
pageRequest
in interfacePage<T>
- Returns:
- the value of the
pageRequest
record component
-