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 class
Analyzer.GlobalReuseStrategy
Deprecated.This implementation class will be hidden in Lucene 5.0.static class
Analyzer.PerFieldReuseStrategy
Deprecated.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.ReuseStrategy
Analyzer. GLOBAL_REUSE_STRATEGY
A predefinedAnalyzer.ReuseStrategy
that reuses the same components for every field.static Analyzer.ReuseStrategy
Analyzer. PER_FIELD_REUSE_STRATEGY
A predefinedAnalyzer.ReuseStrategy
that 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.ReuseStrategy
Analyzer. 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.
-