- 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.Cursorinstances for result, in ordertotalElements- The total number of elements across all pages that can be requested for the querypageRequest- Thepage requestfor which this page was obtainednextPageRequest- Apage requestfor the next page of resultspreviousPageRequest- Apage requestfor 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
ConstructorsConstructorDescriptionCursoredPageRecord(List<T> content, List<PageRequest.Cursor> cursors, long totalElements, PageRequest<T> pageRequest, PageRequest<T> nextPageRequest, PageRequest<T> previousPageRequest) Creates an instance of aCursoredPageRecordrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncontent()Returns the value of thecontentrecord component.cursor(int index) Returns aCursorfor key values at the specified position.cursors()Returns the value of thecursorsrecord component.final booleanIndicates whether some other object is "equal to" this one.booleanReturns whether thePagehas content at all.final inthashCode()Returns a hash code value for this object.booleanhasNext()Returnstrueif 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.booleanReturnstruewhen 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.booleanReturnstrueif 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 thenextPageRequestrecord component.<E> PageRequest<E> nextPageRequest(Class<E> entityClass) Returns a request for the next page ifPage.hasNext()indicates there might be a next page.intReturns the number of elements on thisPage, which must be no larger than the maximumsizeof the page request.Returns the value of thepageRequestrecord component.<E> PageRequest<E> pageRequest(Class<E> entityClass) Returns the page request for which this page was obtained.Returns the value of thepreviousPageRequestrecord 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 StringtoString()Returns a string representation of this record class.longReturns the value of thetotalElementsrecord component.longReturns 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, waitMethods 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 aCursoredPageRecordrecord class.- Parameters:
content- the value for thecontentrecord componentcursors- the value for thecursorsrecord componenttotalElements- the value for thetotalElementsrecord componentpageRequest- the value for thepageRequestrecord componentnextPageRequest- the value for thenextPageRequestrecord componentpreviousPageRequest- the value for thepreviousPageRequestrecord component
-
-
Method Details
-
hasContent
-
numberOfElements
public int numberOfElements()Description copied from interface:PageReturns the number of elements on thisPage, which must be no larger than the maximumsizeof 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:
numberOfElementsin interfacePage<T>- Returns:
- the number of elements on this
Page.
-
hasNext
public boolean hasNext()Description copied from interface:PageReturnstrueif 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:CursoredPageReturnstruewhen 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:
hasPreviousin interfaceCursoredPage<T>- Specified by:
hasPreviousin interfacePage<T>- Returns:
falseif the current page is empty or if it is known that there is not a previous page.
-
pageRequest
Description copied from interface:PageReturns 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
PageRequestto be cast back to the type of entity class that was queried.- Specified by:
pageRequestin 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 thenextPageRequestrecord component.- Specified by:
nextPageRequestin interfaceCursoredPage<T>- Specified by:
nextPageRequestin interfacePage<T>- Returns:
- the value of the
nextPageRequestrecord component
-
nextPageRequest
Description copied from interface:PageReturns 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
PageRequestto be cast back to the type of entity class that was queried.- Specified by:
nextPageRequestin 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 thepreviousPageRequestrecord component.- Specified by:
previousPageRequestin interfaceCursoredPage<T>- Specified by:
previousPageRequestin interfacePage<T>- Returns:
- the value of the
previousPageRequestrecord component
-
previousPageRequest
Description copied from interface:PageReturns 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
PageRequestto be cast back to the type of entity class that was queried.- Specified by:
previousPageRequestin 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:CursoredPageReturns aCursorfor key values at the specified position.- Specified by:
cursorin 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:PageReturnstrueif 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 thetotalElementsrecord component.- Specified by:
totalElementsin interfacePage<T>- Returns:
- the value of the
totalElementsrecord component
-
totalPages
public long totalPages()Description copied from interface:PageReturns the total number of pages of query results, if thePage.pageRequest()specified that the total should be retrieved from the database.- Specified by:
totalPagesin 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 thepageRequestrecord component.- Specified by:
pageRequestin interfacePage<T>- Returns:
- the value of the
pageRequestrecord component
-