Package org.elasticsearch.index.analysis
Interface TokenFilterFactory
-
- All Known Implementing Classes:
AbstractTokenFilterFactory,HunspellTokenFilterFactory,ShingleTokenFilterFactory,ShingleTokenFilterFactory.Factory,SoraniNormalizationFilterFactory,StandardTokenFilterFactory,StopTokenFilterFactory,SynonymGraphTokenFilterFactory,SynonymGraphTokenFilterFactory.Factory,SynonymTokenFilterFactory,SynonymTokenFilterFactory.Factory
public interface TokenFilterFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleanbreaksFastVectorHighlighter()Does this analyzer mess up theOffsetAttributes in such as way as to break theFastVectorHighlighter? If this istruethen the FastVectorHighlighter will attempt to work around the broken offsets.org.apache.lucene.analysis.TokenStreamcreate(org.apache.lucene.analysis.TokenStream tokenStream)java.lang.Stringname()
-
-
-
Method Detail
-
name
java.lang.String name()
-
create
org.apache.lucene.analysis.TokenStream create(org.apache.lucene.analysis.TokenStream tokenStream)
-
breaksFastVectorHighlighter
default boolean breaksFastVectorHighlighter()
Does this analyzer mess up theOffsetAttributes in such as way as to break theFastVectorHighlighter? If this istruethen the FastVectorHighlighter will attempt to work around the broken offsets.
-
-