Uses of Class
org.apache.lucene.analysis.Analyzer.ReuseStrategy
-
Packages that use Analyzer.ReuseStrategy Package Description org.apache.lucene.analysis API and code to convert text into indexable/searchable tokens. -
-
Uses of Analyzer.ReuseStrategy in org.apache.lucene.analysis
Subclasses of Analyzer.ReuseStrategy in org.apache.lucene.analysis Modifier and Type Class Description static classAnalyzer.GlobalReuseStrategyDeprecated.This implementation class will be hidden in Lucene 5.0.static classAnalyzer.PerFieldReuseStrategyDeprecated.This implementation class will be hidden in Lucene 5.0.Fields in org.apache.lucene.analysis declared as Analyzer.ReuseStrategy Modifier and Type Field Description static Analyzer.ReuseStrategyAnalyzer. GLOBAL_REUSE_STRATEGYA predefinedAnalyzer.ReuseStrategythat reuses the same components for every field.static Analyzer.ReuseStrategyAnalyzer. PER_FIELD_REUSE_STRATEGYA predefinedAnalyzer.ReuseStrategythat reuses components per-field by maintaining a Map of TokenStreamComponent per field name.Methods in org.apache.lucene.analysis that return Analyzer.ReuseStrategy Modifier and Type Method Description Analyzer.ReuseStrategyAnalyzer. getReuseStrategy()Returns the usedAnalyzer.ReuseStrategy.Constructors in org.apache.lucene.analysis with parameters of type Analyzer.ReuseStrategy Constructor Description Analyzer(Analyzer.ReuseStrategy reuseStrategy)Expert: create a new Analyzer with a customAnalyzer.ReuseStrategy.AnalyzerWrapper(Analyzer.ReuseStrategy reuseStrategy)Creates a new AnalyzerWrapper with the given reuse strategy.
-