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. -- GETTER -- |
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 hasResults(): Boolean
This specifies if the results where retrieved from a Fuzzy Search Request. |