open class GeometrySearchResponse : ServiceBaseResponse, Serializable, BatchableSearchResponse
The response to a Geometry Search request. It consists of a summary and a result list.
GeometrySearchResponse()
The response to a Geometry Search request. It consists of a summary and a result list. |
var results: Array<GeometrySearchResult!>!
The result list. |
|
var summary: Summary!
This section contains basic information about returned results. |
open fun accept(visitor: BatchableSearchResponseVisitor!): Unit |
|
open fun getResults(): ImmutableList<GeometrySearchResult!>!
The getter of the results list. It creates an immutable list of geometry search results if the result array is not empty. Otherwise it returns an empty, immutable list. |
|
open fun getSummary(): Summary!
Returns the section that contains basic information about returned results. |
|
open fun hasResults(): Boolean
This specifies if the results where retrieved from a Fuzzy Search request. |
|
open fun toString(): String |