Uses of Class
com.azure.search.documents.indexes.models.TokenFilterName
Packages that use TokenFilterName
Package
Description
Package containing the data models for SearchServiceClient.
-
Uses of TokenFilterName in com.azure.search.documents.indexes.models
Subclasses with type arguments of type TokenFilterName in com.azure.search.documents.indexes.modelsModifier and TypeClassDescriptionfinal classDefines the names of all token filters supported by the search engine.Fields in com.azure.search.documents.indexes.models declared as TokenFilterNameModifier and TypeFieldDescriptionstatic final TokenFilterNameTokenFilterName.APOSTROPHEStrips all characters after an apostrophe (including the apostrophe itself).static final TokenFilterNameTokenFilterName.ARABIC_NORMALIZATIONA token filter that applies the Arabic normalizer to normalize the orthography.static final TokenFilterNameTokenFilterName.ASCII_FOLDINGConverts 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.static final TokenFilterNameTokenFilterName.CJK_BIGRAMForms bigrams of CJK terms that are generated from the standard tokenizer.static final TokenFilterNameTokenFilterName.CJK_WIDTHNormalizes CJK width differences.static final TokenFilterNameTokenFilterName.CLASSICRemoves English possessives, and dots from acronyms.static final TokenFilterNameTokenFilterName.COMMON_GRAMConstruct bigrams for frequently occurring terms while indexing.static final TokenFilterNameTokenFilterName.EDGE_NGRAMGenerates n-grams of the given size(s) starting from the front or the back of an input token.static final TokenFilterNameTokenFilterName.ELISIONRemoves elisions.static final TokenFilterNameTokenFilterName.GERMAN_NORMALIZATIONNormalizes German characters according to the heuristics of the German2 snowball algorithm.static final TokenFilterNameTokenFilterName.HINDI_NORMALIZATIONNormalizes text in Hindi to remove some differences in spelling variations.static final TokenFilterNameTokenFilterName.INDIC_NORMALIZATIONNormalizes the Unicode representation of text in Indian languages.static final TokenFilterNameTokenFilterName.KEYWORD_REPEATEmits each incoming token twice, once as keyword and once as non-keyword.static final TokenFilterNameTokenFilterName.KSTEMA high-performance kstem filter for English.static final TokenFilterNameTokenFilterName.LENGTHRemoves words that are too long or too short.static final TokenFilterNameTokenFilterName.LIMITLimits the number of tokens while indexing.static final TokenFilterNameTokenFilterName.LOWERCASENormalizes token text to lower case.static final TokenFilterNameTokenFilterName.NGRAMGenerates n-grams of the given size(s).static final TokenFilterNameTokenFilterName.PERSIAN_NORMALIZATIONApplies normalization for Persian.static final TokenFilterNameTokenFilterName.PHONETICCreate tokens for phonetic matches.static final TokenFilterNameTokenFilterName.PORTER_STEMUses the Porter stemming algorithm to transform the token stream.static final TokenFilterNameTokenFilterName.REVERSEReverses the token string.static final TokenFilterNameTokenFilterName.SCANDINAVIAN_FOLDING_NORMALIZATIONFolds Scandinavian characters åÅäæÄÆ->a and öÖøØ->o.static final TokenFilterNameTokenFilterName.SCANDINAVIAN_NORMALIZATIONNormalizes use of the interchangeable Scandinavian characters.static final TokenFilterNameTokenFilterName.SHINGLECreates combinations of tokens as a single token.static final TokenFilterNameTokenFilterName.SNOWBALLA filter that stems words using a Snowball-generated stemmer.static final TokenFilterNameTokenFilterName.SORANI_NORMALIZATIONNormalizes the Unicode representation of Sorani text.static final TokenFilterNameTokenFilterName.STEMMERLanguage specific stemming filter.static final TokenFilterNameTokenFilterName.STOPWORDSRemoves stop words from a token stream.static final TokenFilterNameTokenFilterName.TRIMTrims leading and trailing whitespace from tokens.static final TokenFilterNameTokenFilterName.TRUNCATETruncates the terms to a specific length.static final TokenFilterNameTokenFilterName.UNIQUEFilters out tokens with same text as the previous token.static final TokenFilterNameTokenFilterName.UPPERCASENormalizes token text to upper case.static final TokenFilterNameTokenFilterName.WORD_DELIMITERSplits words into subwords and performs optional transformations on subword groups.Methods in com.azure.search.documents.indexes.models that return TokenFilterNameModifier and TypeMethodDescriptionstatic TokenFilterNameTokenFilterName.fromString(String name) Creates or finds a TokenFilterName from its string representation.Methods in com.azure.search.documents.indexes.models that return types with arguments of type TokenFilterNameModifier and TypeMethodDescriptionAnalyzeTextOptions.getTokenFilters()Get the tokenFilters property: An optional list of token filters to use when breaking the given text.CustomAnalyzer.getTokenFilters()Get the tokenFilters property: A list of token filters used to filter out or modify the tokens generated by a tokenizer.CustomNormalizer.getTokenFilters()Get the tokenFilters property: A list of token filters used to filter out or modify the input token.static Collection<TokenFilterName> TokenFilterName.values()Gets known TokenFilterName values.Methods in com.azure.search.documents.indexes.models with parameters of type TokenFilterNameModifier and TypeMethodDescriptionAnalyzeTextOptions.setTokenFilters(TokenFilterName... tokenFilters) Set the tokenFilters property: An optional list of token filters to use when breaking the given text.CustomAnalyzer.setTokenFilters(TokenFilterName... tokenFilters) Set the tokenFilters property: A list of token filters used to filter out or modify the tokens generated by a tokenizer.Method parameters in com.azure.search.documents.indexes.models with type arguments of type TokenFilterNameModifier and TypeMethodDescriptionCustomAnalyzer.setTokenFilters(List<TokenFilterName> tokenFilters) Set the tokenFilters property: A list of token filters used to filter out or modify the tokens generated by a tokenizer.CustomNormalizer.setTokenFilters(List<TokenFilterName> tokenFilters) Set the tokenFilters property: A list of token filters used to filter out or modify the input token.