AutocompletePagedResponse Class
- java.
lang. Object - com.
azure. core. http. rest. PagedResponseBase<H,T> - com.
azure. search. documents. util. AutocompletePagedResponse
- com.
- com.
public final class AutocompletePagedResponse
extends PagedResponseBase<Void,AutocompleteItem>
This class represents a response from the autocomplete API. It contains the AutocompleteItem returned from the service.
Constructor Summary
Constructor | Description |
---|---|
AutocompletePagedResponse(SimpleResponse<AutocompleteResult> autocompleteResponse) |
Creates an AutocompletePagedResponse from the returned Response<T>. |
Method Summary
Modifier and Type | Method and Description |
---|---|
Double |
getCoverage()
The percentage of the index covered in the autocomplete request. |
Methods inherited from PagedResponseBase
Methods inherited from java.lang.Object
Constructor Details
AutocompletePagedResponse
public AutocompletePagedResponse(SimpleResponse
Creates an AutocompletePagedResponse from the returned Response<T>.
Parameters:
autocompleteResponse
- Autocomplete response returned from the service.
Method Details
getCoverage
public Double getCoverage()
The percentage of the index covered in the autocomplete request.
If minimumCoverage
wasn't supplied in the request this will be null
.
Returns:
The percentage of the index covered in the suggest request if
minimumCoverage
was set in the
request, otherwise null
.