SuggestOptions Class

  • java.lang.Object
    • com.azure.search.documents.models.SuggestOptions

Implements

public final class SuggestOptions
implements JsonSerializable<SuggestOptions>

Parameter group.

Constructor Summary

Constructor Description
SuggestOptions()

Creates an instance of SuggestOptions class.

Method Summary

Modifier and Type Method and Description
static SuggestOptions fromJson(JsonReader jsonReader)

Reads an instance of SuggestOptions from the JsonReader.

String getFilter()

Get the filter property: An OData expression that filters the documents considered for suggestions.

String getHighlightPostTag()

Get the highlightPostTag property: A string tag that is appended to hit highlights.

String getHighlightPreTag()

Get the highlightPreTag property: A string tag that is prepended to hit highlights.

Double getMinimumCoverage()

Get the minimumCoverage property: A number between 0 and 100 indicating the percentage of the index that must be covered by a suggestions query in order for the query to be reported as a success.

List<String> getOrderBy()

Get the orderBy property: The list of OData $orderby expressions by which to sort the results.

List<String> getSearchFields()

Get the searchFields property: The list of field names to search for the specified search text.

List<String> getSelect()

Get the select property: The list of fields to retrieve.

Integer getTop()

Get the top property: The number of suggestions to retrieve.

SuggestOptions setFilter(String filter)

Set the filter property: An OData expression that filters the documents considered for suggestions.

SuggestOptions setHighlightPostTag(String highlightPostTag)

Set the highlightPostTag property: A string tag that is appended to hit highlights.

SuggestOptions setHighlightPreTag(String highlightPreTag)

Set the highlightPreTag property: A string tag that is prepended to hit highlights.

SuggestOptions setMinimumCoverage(Double minimumCoverage)

Set the minimumCoverage property: A number between 0 and 100 indicating the percentage of the index that must be covered by a suggestions query in order for the query to be reported as a success.

SuggestOptions setOrderBy(String[] orderBy)

Set the orderBy property: The list of OData $orderby expressions by which to sort the results.

SuggestOptions setOrderBy(List<String> orderBy)

Set the orderBy property: The list of OData $orderby expressions by which to sort the results.

SuggestOptions setSearchFields(String[] searchFields)

Set the searchFields property: The list of field names to search for the specified search text.

SuggestOptions setSearchFields(List<String> searchFields)

Set the searchFields property: The list of field names to search for the specified search text.

SuggestOptions setSelect(String[] select)

Set the select property: The list of fields to retrieve.

SuggestOptions setSelect(List<String> select)

Set the select property: The list of fields to retrieve.

SuggestOptions setTop(Integer top)

Set the top property: The number of suggestions to retrieve.

SuggestOptions setUseFuzzyMatching(Boolean useFuzzyMatching)

Set the useFuzzyMatching property: A value indicating whether to use fuzzy matching for the suggestions query.

JsonWriter toJson(JsonWriter jsonWriter)
Boolean useFuzzyMatching()

Get the useFuzzyMatching property: A value indicating whether to use fuzzy matching for the suggestions query.

Methods inherited from java.lang.Object

Constructor Details

SuggestOptions

public SuggestOptions()

Creates an instance of SuggestOptions class.

Method Details

fromJson

public static SuggestOptions fromJson(JsonReader jsonReader)

Reads an instance of SuggestOptions from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of SuggestOptions if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If an error occurs while reading the SuggestOptions.

getFilter

public String getFilter()

Get the filter property: An OData expression that filters the documents considered for suggestions.

Returns:

the filter value.

getHighlightPostTag

public String getHighlightPostTag()

Get the highlightPostTag property: A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting of suggestions is disabled.

Returns:

the highlightPostTag value.

getHighlightPreTag

public String getHighlightPreTag()

Get the highlightPreTag property: A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting of suggestions is disabled.

Returns:

the highlightPreTag value.

getMinimumCoverage

public Double getMinimumCoverage()

Get the minimumCoverage property: A number between 0 and 100 indicating the percentage of the index that must be covered by a suggestions query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80.

Returns:

the minimumCoverage value.

getOrderBy

public List getOrderBy()

Get the orderBy property: The list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, or desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no $orderby is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses.

Returns:

the orderBy value.

getSearchFields

public List getSearchFields()

Get the searchFields property: The list of field names to search for the specified search text. Target fields must be included in the specified suggester.

Returns:

the searchFields value.

getSelect

public List getSelect()

Get the select property: The list of fields to retrieve. If unspecified, only the key field will be included in the results.

Returns:

the select value.

getTop

public Integer getTop()

Get the top property: The number of suggestions to retrieve. The value must be a number between 1 and 100. The default is 5.

Returns:

the top value.

setFilter

public SuggestOptions setFilter(String filter)

Set the filter property: An OData expression that filters the documents considered for suggestions.

Parameters:

filter - the filter value to set.

Returns:

the SuggestOptions object itself.

setHighlightPostTag

public SuggestOptions setHighlightPostTag(String highlightPostTag)

Set the highlightPostTag property: A string tag that is appended to hit highlights. Must be set with highlightPreTag. If omitted, hit highlighting of suggestions is disabled.

Parameters:

highlightPostTag - the highlightPostTag value to set.

Returns:

the SuggestOptions object itself.

setHighlightPreTag

public SuggestOptions setHighlightPreTag(String highlightPreTag)

Set the highlightPreTag property: A string tag that is prepended to hit highlights. Must be set with highlightPostTag. If omitted, hit highlighting of suggestions is disabled.

Parameters:

highlightPreTag - the highlightPreTag value to set.

Returns:

the SuggestOptions object itself.

setMinimumCoverage

public SuggestOptions setMinimumCoverage(Double minimumCoverage)

Set the minimumCoverage property: A number between 0 and 100 indicating the percentage of the index that must be covered by a suggestions query in order for the query to be reported as a success. This parameter can be useful for ensuring search availability even for services with only one replica. The default is 80.

Parameters:

minimumCoverage - the minimumCoverage value to set.

Returns:

the SuggestOptions object itself.

setOrderBy

public SuggestOptions setOrderBy(String[] orderBy)

Set the orderBy property: The list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, or desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no $orderby is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses.

Parameters:

orderBy - the orderBy value to set.

Returns:

the SuggestOptions object itself.

setOrderBy

public SuggestOptions setOrderBy(List orderBy)

Set the orderBy property: The list of OData $orderby expressions by which to sort the results. Each expression can be either a field name or a call to either the geo.distance() or the search.score() functions. Each expression can be followed by asc to indicate ascending, or desc to indicate descending. The default is ascending order. Ties will be broken by the match scores of documents. If no $orderby is specified, the default sort order is descending by document match score. There can be at most 32 $orderby clauses.

Parameters:

orderBy - the orderBy value to set.

Returns:

the SuggestOptions object itself.

setSearchFields

public SuggestOptions setSearchFields(String[] searchFields)

Set the searchFields property: The list of field names to search for the specified search text. Target fields must be included in the specified suggester.

Parameters:

searchFields - the searchFields value to set.

Returns:

the SuggestOptions object itself.

setSearchFields

public SuggestOptions setSearchFields(List searchFields)

Set the searchFields property: The list of field names to search for the specified search text. Target fields must be included in the specified suggester.

Parameters:

searchFields - the searchFields value to set.

Returns:

the SuggestOptions object itself.

setSelect

public SuggestOptions setSelect(String[] select)

Set the select property: The list of fields to retrieve. If unspecified, only the key field will be included in the results.

Parameters:

select - the select value to set.

Returns:

the SuggestOptions object itself.

setSelect

public SuggestOptions setSelect(List select)

Set the select property: The list of fields to retrieve. If unspecified, only the key field will be included in the results.

Parameters:

select - the select value to set.

Returns:

the SuggestOptions object itself.

setTop

public SuggestOptions setTop(Integer top)

Set the top property: The number of suggestions to retrieve. The value must be a number between 1 and 100. The default is 5.

Parameters:

top - the top value to set.

Returns:

the SuggestOptions object itself.

setUseFuzzyMatching

public SuggestOptions setUseFuzzyMatching(Boolean useFuzzyMatching)

Set the useFuzzyMatching property: A value indicating whether to use fuzzy matching for the suggestions query. Default is false. When set to true, the query will find terms even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy suggestions queries are slower and consume more resources.

Parameters:

useFuzzyMatching - the useFuzzyMatching value to set.

Returns:

the SuggestOptions object itself.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

useFuzzyMatching

public Boolean useFuzzyMatching()

Get the useFuzzyMatching property: A value indicating whether to use fuzzy matching for the suggestions query. Default is false. When set to true, the query will find terms even if there's a substituted or missing character in the search text. While this provides a better experience in some scenarios, it comes at a performance cost as fuzzy suggestions queries are slower and consume more resources.

Returns:

the useFuzzyMatching value.

Applies to