Uses of Interface
org.elasticsearch.index.analysis.TokenFilterFactory
-
Packages that use TokenFilterFactory Package Description org.elasticsearch.index.analysis org.elasticsearch.indices.analysis org.elasticsearch.plugins -
-
Uses of TokenFilterFactory in org.elasticsearch.index.analysis
Subinterfaces of TokenFilterFactory in org.elasticsearch.index.analysis Modifier and Type Interface Description interfaceNormalizingTokenFilterFactoryA TokenFilterFactory that may be used for normalization The default implementation delegatesNormalizingTokenFilterFactory.normalize(TokenStream)tocreate(TokenStream)}.Classes in org.elasticsearch.index.analysis that implement TokenFilterFactory Modifier and Type Class Description classAbstractTokenFilterFactoryclassHunspellTokenFilterFactoryclassShingleTokenFilterFactorystatic classShingleTokenFilterFactory.FactoryclassStopTokenFilterFactoryFields in org.elasticsearch.index.analysis declared as TokenFilterFactory Modifier and Type Field Description static TokenFilterFactoryTokenFilterFactory. IDENTITY_FILTERA TokenFilterFactory that does no filtering to its TokenStreamMethods in org.elasticsearch.index.analysis that return TokenFilterFactory Modifier and Type Method Description protected TokenFilterFactoryPreConfiguredTokenFilter. create(Version version)default TokenFilterFactoryTokenFilterFactory. getChainAwareTokenFilterFactory(TokenizerFactory tokenizer, List<CharFilterFactory> charFilters, List<TokenFilterFactory> previousTokenFilters, Function<String,TokenFilterFactory> allFilters)Rewrite the TokenFilterFactory to take into account the preceding analysis chain, or refer to other TokenFilterFactoriesTokenFilterFactoryShingleTokenFilterFactory. getSynonymFilter()default TokenFilterFactoryTokenFilterFactory. getSynonymFilter()Return a version of this TokenFilterFactory appropriate for synonym parsing Filters that should not be applied to synonyms (for example, those that produce multiple tokens) should throw an exceptionTokenFilterFactory[]AnalyzerComponents. getTokenFilters()TokenFilterFactory[]CustomAnalyzer. tokenFilters()Methods in org.elasticsearch.index.analysis that return types with arguments of type TokenFilterFactory Modifier and Type Method Description Map<String,TokenFilterFactory>AnalysisRegistry. buildTokenFilterFactories(IndexSettings indexSettings)Method parameters in org.elasticsearch.index.analysis with type arguments of type TokenFilterFactory Modifier and Type Method Description default TokenFilterFactoryTokenFilterFactory. getChainAwareTokenFilterFactory(TokenizerFactory tokenizer, List<CharFilterFactory> charFilters, List<TokenFilterFactory> previousTokenFilters, Function<String,TokenFilterFactory> allFilters)Rewrite the TokenFilterFactory to take into account the preceding analysis chain, or refer to other TokenFilterFactoriesConstructors in org.elasticsearch.index.analysis with parameters of type TokenFilterFactory Constructor Description CustomAnalyzer(TokenizerFactory tokenizerFactory, CharFilterFactory[] charFilters, TokenFilterFactory[] tokenFilters)CustomAnalyzer(TokenizerFactory tokenizerFactory, CharFilterFactory[] charFilters, TokenFilterFactory[] tokenFilters, int positionIncrementGap, int offsetGap) -
Uses of TokenFilterFactory in org.elasticsearch.indices.analysis
Methods in org.elasticsearch.indices.analysis that return TokenFilterFactory Modifier and Type Method Description protected TokenFilterFactoryPreBuiltTokenizers. getMultiTermComponent(Version version) -
Uses of TokenFilterFactory in org.elasticsearch.plugins
Methods in org.elasticsearch.plugins that return types with arguments of type TokenFilterFactory Modifier and Type Method Description default Map<String,AnalysisModule.AnalysisProvider<TokenFilterFactory>>AnalysisPlugin. getTokenFilters()Override to add additionalTokenFilters.
-