Uses of Class
com.azure.search.documents.models.AutocompleteOptions
Packages that use AutocompleteOptions
Package
Description
Azure AI Search, formerly known as "Azure AI Search", provides secure information retrieval at scale over
user-owned content in traditional and conversational search applications.
Package containing the data models for SearchIndexClient.
-
Uses of AutocompleteOptions in com.azure.search.documents
Methods in com.azure.search.documents with parameters of type AutocompleteOptionsModifier and TypeMethodDescriptionSearchAsyncClient.autocomplete(String searchText, String suggesterName, AutocompleteOptions autocompleteOptions) Autocompletes incomplete query terms based on input text and matching terms in the index.SearchClient.autocomplete(String searchText, String suggesterName, AutocompleteOptions autocompleteOptions, com.azure.core.util.Context context) Autocompletes incomplete query terms based on input text and matching terms in the index. -
Uses of AutocompleteOptions in com.azure.search.documents.models
Methods in com.azure.search.documents.models that return AutocompleteOptionsModifier and TypeMethodDescriptionstatic AutocompleteOptionsAutocompleteOptions.fromJson(com.azure.json.JsonReader jsonReader) Reads an instance of AutocompleteOptions from the JsonReader.AutocompleteOptions.setAutocompleteMode(AutocompleteMode autocompleteMode) Set the autocompleteMode property: Specifies the mode for Autocomplete.Set the filter property: An OData expression that filters the documents used to produce completed terms for the Autocomplete result.AutocompleteOptions.setHighlightPostTag(String highlightPostTag) Set the highlightPostTag property: A string tag that is appended to hit highlights.AutocompleteOptions.setHighlightPreTag(String highlightPreTag) Set the highlightPreTag property: A string tag that is prepended to hit highlights.AutocompleteOptions.setMinimumCoverage(Double minimumCoverage) Set the minimumCoverage property: A number between 0 and 100 indicating the percentage of the index that must be covered by an autocomplete query in order for the query to be reported as a success.AutocompleteOptions.setSearchFields(String... searchFields) Set the searchFields property: The list of field names to consider when querying for auto-completed terms.AutocompleteOptions.setSearchFields(List<String> searchFields) Set the searchFields property: The list of field names to consider when querying for auto-completed terms.Set the top property: The number of auto-completed terms to retrieve.AutocompleteOptions.setUseFuzzyMatching(Boolean useFuzzyMatching) Set the useFuzzyMatching property: A value indicating whether to use fuzzy matching for the autocomplete query.