public interface QueryResultSet
ExecuteQuery
Modifier and Type | Method and Description |
---|---|
Query |
getFirstPage()
Returns a query which allow getting the first page of the query results.
|
Query |
getLastPage()
Returns a query which allow getting the last page of the query results.
|
Query |
getNextPage()
Returns a query which allow getting the next page of the query results.
|
long |
getPageSize()
Returns the size of the paging, which is the maximum number of item per page the response can contain.
|
Query |
getPreviousPage()
Returns a query which allow getting the previous page of the query results.
|
List<QueryResult> |
getResults()
Returns the list of results.
|
long |
getStartIndex()
Returns the index of the first item in the results regarding the total number of items matching the query, when paging is used.
|
long |
getTotalResults()
Returns the total number of items matching the query.
|
List<QueryResult> getResults()
The query response might use paging, in which case the getNextPage()
method can be used to retrieve the next page of results.
getTotalResults()
,
getNextPage()
long getTotalResults()
getResults()
method if the query uses paging.long getStartIndex()
long getPageSize()
Query getFirstPage()
null
if none.ExecuteQuery
Query getLastPage()
null
if none.ExecuteQuery
Query getNextPage()
null
if none.ExecuteQuery
Query getPreviousPage()
null
if none.ExecuteQuery