Uses of Class
com.azure.search.documents.indexes.models.TokenFilter
Packages that use TokenFilter
Package
Description
Package containing classes for SearchServiceClient.
-
Uses of TokenFilter in com.azure.search.documents.indexes.models
Subclasses of TokenFilter in com.azure.search.documents.indexes.modelsModifier and TypeClassDescriptionfinal class
Converts alphabetic, numeric, and symbolic Unicode characters which are not in the first 127 ASCII characters (the "Basic Latin" Unicode block) into their ASCII equivalents, if such equivalents exist.final class
Forms bigrams of CJK terms that are generated from the standard tokenizer.final class
Construct bigrams for frequently occurring terms while indexing.final class
Decomposes compound words found in many Germanic languages.final class
Generates n-grams of the given size(s) starting from the front or the back of an input token.final class
Removes elisions.final class
A token filter that only keeps tokens with text contained in a specified list of words.final class
Marks terms as keywords.final class
Removes words that are too long or too short.final class
Limits the number of tokens while indexing.final class
Generates n-grams of the given size(s).final class
Uses Java regexes to emit multiple tokens - one for each capture group in one or more patterns.final class
A character filter that replaces characters in the input string.final class
Create tokens for phonetic matches.final class
Creates combinations of tokens as a single token.final class
A filter that stems words using a Snowball-generated stemmer.final class
Provides the ability to override other stemming filters with custom dictionary-based stemming.final class
Language specific stemming filter.final class
Removes stop words from a token stream.final class
Matches single or multi-word synonyms in a token stream.final class
Truncates the terms to a specific length.final class
Filters out tokens with same text as the previous token.final class
Splits words into subwords and performs optional transformations on subword groups.Methods in com.azure.search.documents.indexes.models that return types with arguments of type TokenFilterModifier and TypeMethodDescriptionSearchIndex.getTokenFilters()
Get the tokenFilters property: The token filters for the index.Methods in com.azure.search.documents.indexes.models with parameters of type TokenFilterModifier and TypeMethodDescriptionSearchIndex.setTokenFilters
(TokenFilter... tokenFilters) Set the tokenFilters property: The token filters for the index.Method parameters in com.azure.search.documents.indexes.models with type arguments of type TokenFilterModifier and TypeMethodDescriptionSearchIndex.setTokenFilters
(List<TokenFilter> tokenFilters) Set the tokenFilters property: The token filters for the index.