public final class SearchResult extends Object
Modifier and Type | Class and Description |
---|---|
static class |
SearchResult.CountPolicy
An enum of count policy types.
|
Modifier and Type | Field and Description |
---|---|
static int |
NO_COUNT
The value provided when no count is known or can reasonably be supplied.
|
Constructor and Description |
---|
SearchResult()
Creates a new search result with a
null paged results cookie and
no estimate of the total number of remaining results. |
SearchResult(String pagedResultsCookie,
int remainingPagedResults)
Creates a new search result with the provided paged results cookie and
estimate of the total number of remaining results.
|
SearchResult(String pagedResultsCookie,
SearchResult.CountPolicy totalPagedResultsPolicy,
int totalPagedResults,
int remainingPagedResults)
Creates a new query response with the provided paged results cookie and a
count of the total number of resources according to
totalPagedResultsPolicy . |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o) |
String |
getPagedResultsCookie()
Returns the opaque cookie which should be used with the next paged
results search request.
|
int |
getRemainingPagedResults()
Returns an estimate of the total number of remaining results to be
returned in subsequent paged results search requests.
|
int |
getTotalPagedResults()
Returns the total number of paged results in adherence with the
OperationOptions.getTotalPagedResultsPolicy() in the request or
NO_COUNT if paged results were not requested, the count policy
is NONE , or the total number of paged results is unknown. |
SearchResult.CountPolicy |
getTotalPagedResultsPolicy()
Returns the policy that was used to calculate the
totalPagedResults.
|
int |
hashCode() |
public static final int NO_COUNT
public SearchResult()
null
paged results cookie and
no estimate of the total number of remaining results.public SearchResult(String pagedResultsCookie, int remainingPagedResults)
pagedResultsCookie
- The opaque cookie which should be used with the next paged
results search request, or null
if paged results were
not requested, or if there are not more pages to be returned.remainingPagedResults
- An estimate of the total number of remaining results to be
returned in subsequent paged results search requests, or
-1
if paged results were not requested, or if the
total number of remaining results is unknown.public SearchResult(String pagedResultsCookie, SearchResult.CountPolicy totalPagedResultsPolicy, int totalPagedResults, int remainingPagedResults)
totalPagedResultsPolicy
.pagedResultsCookie
- The opaque cookie which should be used with the next paged
results query request, or null
if paged results were
not requested, or if there are not more pages to be returned.totalPagedResultsPolicy
- The policy that was used to calculate
totalPagedResults
. If none is specified (null
), then SearchResult.CountPolicy.NONE
is assumed.totalPagedResults
- The total number of paged results requested in adherence to
the OperationOptions.getTotalPagedResultsPolicy()
in
the request, or NO_COUNT
if paged results were not
requested, the count policy is NONE
, or if the total
number of results is unknown.remainingPagedResults
- An estimate of the total number of remaining results to be
returned in subsequent paged results query requests, or
-1
if paged results were not requested, or if the
total number of remaining results is unknown.public String getPagedResultsCookie()
null
if paged results were not
requested, or if there are not more pages to be returned.public SearchResult.CountPolicy getTotalPagedResultsPolicy()
getTotalPagedResults()
public int getTotalPagedResults()
OperationOptions.getTotalPagedResultsPolicy()
in the request or
NO_COUNT
if paged results were not requested, the count policy
is NONE
, or the total number of paged results is unknown.NO_COUNT
if
paged results were not requested, or if the total number of paged
results is unknown.public int getRemainingPagedResults()
-1
if paged results were not requested, or if the total
number of remaining results is unknown.Copyright © 2018–2025. All rights reserved.