Uses of Class
com.cercalia.sdk.model.suggest.SuggestResult
Packages that use SuggestResult
Package
Description
Suggest and autocomplete data models.
Core services for interacting with Cercalia APIs.
-
Uses of SuggestResult in com.cercalia.sdk.model.suggest
Methods in com.cercalia.sdk.model.suggest that return SuggestResultModifier and TypeMethodDescriptionSuggestResult.Builder.build()Builds a newSuggestResultinstance. -
Uses of SuggestResult in com.cercalia.sdk.services
Methods in com.cercalia.sdk.services that return types with arguments of type SuggestResultModifier and TypeMethodDescription@NotNull List<SuggestResult>SuggestService.search(@NotNull SuggestOptions options) Search for address/POI suggestions based on partial text input.@NotNull CompletableFuture<List<SuggestResult>>SuggestService.searchAsync(@NotNull SuggestOptions options) Search for address/POI suggestions asynchronously.@NotNull List<SuggestResult>SuggestService.searchCities(@NotNull String text, @Nullable String countryCode) Search for city/locality suggestions only.@NotNull CompletableFuture<List<SuggestResult>>SuggestService.searchCitiesAsync(@NotNull String text, @Nullable String countryCode) Search for city/locality suggestions asynchronously.@NotNull List<SuggestResult>SuggestService.searchPois(@NotNull String text, @Nullable String countryCode, @Nullable Coordinate center, @Nullable Integer radius, @Nullable List<String> poiCategories) Search for POI suggestions only.@NotNull CompletableFuture<List<SuggestResult>>SuggestService.searchPoisAsync(@NotNull String text, @Nullable String countryCode, @Nullable Coordinate center, @Nullable Integer radius, @Nullable List<String> poiCategories) Search for POI suggestions asynchronously.@NotNull List<SuggestResult>SuggestService.searchStreets(@NotNull String text, @Nullable String countryCode) Search for street suggestions only.@NotNull CompletableFuture<List<SuggestResult>>SuggestService.searchStreetsAsync(@NotNull String text, @Nullable String countryCode) Search for street suggestions asynchronously.