Interface LuceneAnalysisDefinitionCollector
-
public interface LuceneAnalysisDefinitionCollector
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcollectAnalyzer(String name, org.apache.lucene.analysis.Analyzer analyzer)Collect an analyzer definition.voidcollectNormalizer(String name, org.apache.lucene.analysis.Analyzer normalizer)Collect a normalizer definition.
-
-
-
Method Detail
-
collectAnalyzer
void collectAnalyzer(String name, org.apache.lucene.analysis.Analyzer analyzer)
Collect an analyzer definition.- Parameters:
name- The name of the definition to be registered.analyzer- The analyzer to be registered.- Throws:
SearchException- if the name is already associated with a different definition.
-
collectNormalizer
void collectNormalizer(String name, org.apache.lucene.analysis.Analyzer normalizer)
Collect a normalizer definition.- Parameters:
name- The name of the definition to be registered.normalizer- The normalizer to be registered.- Throws:
SearchException- if the name is already associated with a different definition.
-
-