Class TermSuggester
java.lang.Object
co.elastic.clients.elasticsearch.core.search.SuggesterBase
co.elastic.clients.elasticsearch.core.search.TermSuggester
- All Implemented Interfaces:
FieldSuggesterVariant
,JsonpSerializable
@JsonpDeserializable
public class TermSuggester
extends SuggesterBase
implements FieldSuggesterVariant
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class co.elastic.clients.elasticsearch.core.search.SuggesterBase
SuggesterBase.AbstractBuilder<BuilderT extends SuggesterBase.AbstractBuilder<BuilderT>>
-
Field Summary
Modifier and TypeFieldDescriptionstatic final JsonpDeserializer<TermSuggester>
Json deserializer forTermSuggester
-
Method Summary
Modifier and TypeMethodDescriptionFieldSuggester variant kind.final Boolean
API name:lowercase_terms
final Integer
maxEdits()
The maximum edit distance candidate suggestions can have in order to be considered as a suggestion.final Integer
A factor that is used to multiply with the shard_size in order to inspect more candidate spelling corrections on the shard level.final Float
The maximum threshold in number of documents in which a suggest text token can exist in order to be included.final Float
The minimal threshold in number of documents a suggestion should appear in.final Integer
The minimum length a suggest text term must have in order to be included.static TermSuggester
final Integer
The number of minimal prefix characters that must match in order be a candidate for suggestions.protected void
serializeInternal
(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper) protected static void
final Integer
Sets the maximum number of suggestions to be retrieved from each individual shard.final SuggestSort
sort()
Defines how suggestions should be sorted per suggest text term.final StringDistance
The string distance implementation to use for comparing how similar suggested terms are.final SuggestMode
Controls what suggestions are included or controls for what suggest text terms, suggestions should be suggested.final String
text()
The suggest text.Methods inherited from class co.elastic.clients.elasticsearch.core.search.SuggesterBase
analyzer, field, serialize, setupSuggesterBaseDeserializer, size, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface co.elastic.clients.elasticsearch.core.search.FieldSuggesterVariant
_toFieldSuggester
-
Field Details
-
_DESERIALIZER
Json deserializer forTermSuggester
-
-
Method Details
-
of
-
_fieldSuggesterKind
FieldSuggester variant kind.- Specified by:
_fieldSuggesterKind
in interfaceFieldSuggesterVariant
-
lowercaseTerms
API name:lowercase_terms
-
maxEdits
The maximum edit distance candidate suggestions can have in order to be considered as a suggestion. Can only be1
or2
.API name:
max_edits
-
maxInspections
A factor that is used to multiply with the shard_size in order to inspect more candidate spelling corrections on the shard level. Can improve accuracy at the cost of performance.API name:
max_inspections
-
maxTermFreq
The maximum threshold in number of documents in which a suggest text token can exist in order to be included. Can be a relative percentage number (for example0.4
) or an absolute number to represent document frequencies. If a value higher than 1 is specified, then fractional can not be specified.API name:
max_term_freq
-
minDocFreq
The minimal threshold in number of documents a suggestion should appear in. This can improve quality by only suggesting high frequency terms. Can be specified as an absolute number or as a relative percentage of number of documents. If a value higher than 1 is specified, then the number cannot be fractional.API name:
min_doc_freq
-
minWordLength
The minimum length a suggest text term must have in order to be included.API name:
min_word_length
-
prefixLength
The number of minimal prefix characters that must match in order be a candidate for suggestions. Increasing this number improves spellcheck performance.API name:
prefix_length
-
shardSize
Sets the maximum number of suggestions to be retrieved from each individual shard.API name:
shard_size
-
sort
Defines how suggestions should be sorted per suggest text term.API name:
sort
-
stringDistance
The string distance implementation to use for comparing how similar suggested terms are.API name:
string_distance
-
suggestMode
Controls what suggestions are included or controls for what suggest text terms, suggestions should be suggested.API name:
suggest_mode
-
text
The suggest text. Needs to be set globally or per suggestion.API name:
text
-
serializeInternal
- Overrides:
serializeInternal
in classSuggesterBase
-
setupTermSuggesterDeserializer
-