Class NGramTokenFilter
java.lang.Object
com.azure.search.documents.indexes.models.TokenFilter
com.azure.search.documents.indexes.models.NGramTokenFilter
Generates n-grams of the given size(s). This token filter is implemented
using Apache Lucene.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet the maxGram property: The maximum n-gram length.Get the minGram property: The minimum n-gram length.setMaxGram
(Integer maxGram) Set the maxGram property: The maximum n-gram length.setMinGram
(Integer minGram) Set the minGram property: The minimum n-gram length.Methods inherited from class com.azure.search.documents.indexes.models.TokenFilter
getName
-
Constructor Details
-
NGramTokenFilter
Constructor ofNGramTokenFilter
.- Parameters:
name
- The name of the token filter. It must only contain letters, digits, spaces, dashes or underscores, can only start and end with alphanumeric characters, and is limited to 128 characters.
-
-
Method Details
-
getMinGram
Get the minGram property: The minimum n-gram length. Default is 1. Must be less than the value of maxGram.- Returns:
- the minGram value.
-
setMinGram
Set the minGram property: The minimum n-gram length. Default is 1. Must be less than the value of maxGram.- Parameters:
minGram
- the minGram value to set.- Returns:
- the NGramTokenFilter object itself.
-
getMaxGram
Get the maxGram property: The maximum n-gram length. Default is 2.- Returns:
- the maxGram value.
-
setMaxGram
Set the maxGram property: The maximum n-gram length. Default is 2.- Parameters:
maxGram
- the maxGram value to set.- Returns:
- the NGramTokenFilter object itself.
-