Uses of Class
org.apache.lucene.analysis.Analyzer.ReuseStrategy
Packages that use Analyzer.ReuseStrategy
Package
Description
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.analysisModifier and TypeClassDescriptionstatic final class
Deprecated.This implementation class will be hidden in Lucene 5.0.static class
Deprecated.This implementation class will be hidden in Lucene 5.0.Fields in org.apache.lucene.analysis declared as Analyzer.ReuseStrategyModifier and TypeFieldDescriptionstatic final Analyzer.ReuseStrategy
Analyzer.GLOBAL_REUSE_STRATEGY
A predefinedAnalyzer.ReuseStrategy
that reuses the same components for every field.static final 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.ReuseStrategyModifier and TypeMethodDescriptionfinal Analyzer.ReuseStrategy
Analyzer.getReuseStrategy()
Returns the usedAnalyzer.ReuseStrategy
.Constructors in org.apache.lucene.analysis with parameters of type Analyzer.ReuseStrategyModifierConstructorDescriptionAnalyzer
(Analyzer.ReuseStrategy reuseStrategy) Expert: create a new Analyzer with a customAnalyzer.ReuseStrategy
.protected
AnalyzerWrapper
(Analyzer.ReuseStrategy reuseStrategy) Creates a new AnalyzerWrapper with the given reuse strategy.