public interface IFuzzySearchQuery
Modifier and Type | Method and Description |
---|---|
IFuzzySearchQuery |
withBoundingBox(com.tomtom.online.sdk.common.location.BoundingBox boundingBox)
The bounding box for the search.
|
IFuzzySearchQuery |
withCategory(java.lang.Boolean isCategory)
If your search use case only requires POI results filtered by category, you may use the category endpoint.
|
IFuzzySearchQuery |
withCountry(java.lang.String country)
Comma separated string of country codes (eg: FR,ES).
|
IFuzzySearchQuery |
withExtendedPostalCodes(java.lang.String extPostalCodesFor)
Indexes for which extended postal codes should be included in the results.
|
IFuzzySearchQuery |
withIdx(java.lang.String idxSet)
A comma separated list of indexes which should be utilized for the search.
|
IFuzzySearchQuery |
withLanguage(java.lang.String language)
Language in which search results should be returned.
|
IFuzzySearchQuery |
withLimit(java.lang.Integer limit)
The upper limit of the number of results.
|
IFuzzySearchQuery |
withMaxFuzzyLevel(java.lang.Integer maxFuzzyLevel)
Maximum fuzzyness level to be used.
|
IFuzzySearchQuery |
withMinFuzzyLevel(java.lang.Integer minFuzzyLevel)
Minimum fuzzyness level to be used.
|
IFuzzySearchQuery |
withOffset(java.lang.Integer offset)
Starting offset of the returned results within the full result set.
|
IFuzzySearchQuery |
withPosition(LatLng position)
The position where results should be biased.
|
IFuzzySearchQuery |
withPreciseness(com.tomtom.online.sdk.common.location.LatLngAcc positionAcc)
The position where results should be biased.
|
IFuzzySearchQuery |
withTypeAhead(java.lang.Boolean isTypeAhead)
If the "typeahead" flag is set, the query will be interpreted as a partial input and the search will enter predictive mode.
|
IFuzzySearchQuery withLimit(java.lang.Integer limit)
limit
- upper limit of the number of results.IFuzzySearchQuery withOffset(java.lang.Integer offset)
offset
- starting offset of the returned results within the full result set.IFuzzySearchQuery withPosition(LatLng position)
position
- position where results should be biased.IFuzzySearchQuery withPreciseness(com.tomtom.online.sdk.common.location.LatLngAcc positionAcc)
positionAcc
- position where results should be biased. Position with accuracy in m.IFuzzySearchQuery withCountry(java.lang.String country)
country
- string with country codes.IFuzzySearchQuery withIdx(java.lang.String idxSet)
idxSet
- indexes to be utilized for the search.IFuzzySearchQuery withBoundingBox(com.tomtom.online.sdk.common.location.BoundingBox boundingBox)
boundingBox
- top left position of the bounding box and bottom right position of the bounding box.IFuzzySearchQuery withTypeAhead(java.lang.Boolean isTypeAhead)
isTypeAhead
- whether the predictive mode is enabled.IFuzzySearchQuery withCategory(java.lang.Boolean isCategory)
isCategory
- whether the category search is enabled.IFuzzySearchQuery withLanguage(java.lang.String language)
language
- language in which search results should be returned.IFuzzySearchQuery withExtendedPostalCodes(java.lang.String extPostalCodesFor)
extPostalCodesFor
- string with postal codes.IFuzzySearchQuery withMinFuzzyLevel(java.lang.Integer minFuzzyLevel)
minFuzzyLevel
- minimum fuzzyness level to be used.IFuzzySearchQuery withMaxFuzzyLevel(java.lang.Integer maxFuzzyLevel)
maxFuzzyLevel
- maximum fuzzyness level to be used.