Interface ElasticsearchAnalyzerTypeStep
-
public interface ElasticsearchAnalyzerTypeStep
The initial step in an analyzer definition, where the type of analyzer can be set.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ElasticsearchAnalyzerTokenizerStep
custom()
Start a custom analyzer definition, assigning a tokenizer, and optionally char filters and token filters to the definition.ElasticsearchAnalysisComponentParametersStep
type(String type)
Start a typed analyzer definition, assigning a type, and optionally parameters to the definition.
-
-
-
Method Detail
-
custom
ElasticsearchAnalyzerTokenizerStep custom()
Start a custom analyzer definition, assigning a tokenizer, and optionally char filters and token filters to the definition.- Returns:
- The next step.
-
type
ElasticsearchAnalysisComponentParametersStep type(String type)
Start a typed analyzer definition, assigning a type, and optionally parameters to the definition.- Parameters:
type
- The name of the analyzer type to configure.- Returns:
- The next step.
-
-