Interface LuceneNormalizerTypeStep
-
public interface LuceneNormalizerTypeStep
The initial step in an analyzer definition, where the type of normalizer can be set.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LuceneNormalizerOptionalComponentsStep
custom()
Start a custom normalizer definition, assigning char filters and token filters to the definition.LuceneAnalysisConfigurationContext
instance(Analyzer instance)
Assign the given normalizer instance to this normalizer definition.
-
-
-
Method Detail
-
custom
LuceneNormalizerOptionalComponentsStep custom()
Start a custom normalizer definition, assigning char filters and token filters to the definition.- Returns:
- The next step.
-
instance
LuceneAnalysisConfigurationContext instance(Analyzer instance)
Assign the given normalizer instance to this normalizer definition.- Parameters:
instance
- The normalizer instance. This instance is expected to never produce more than one token per stream.- Returns:
- The next step.
-
-