Interface ElasticsearchAnalysisComponentParametersStep
public interface ElasticsearchAnalysisComponentParametersStep
The step in an analysis component definition where optional parameters can be set.
-
Method Summary
Modifier and TypeMethodDescriptionSet the value of a parameter to a given boolean.Set the value of a parameter to a given array of booleans.Set the value of a parameter to a given number (int, long, float, double, ...).Set the value of a parameter to a given array of numbers (int, long, float, double, ...).Set the value of a parameter to a given string.Set the value of a parameter to a given array of strings.
-
Method Details
-
param
Set the value of a parameter to a given string.Supported parameters depend on the
typebeing used.- Parameters:
name- The name of the parameter.value- The value of the parameter.- Returns:
this, for method chaining.
-
param
Set the value of a parameter to a given array of strings.Supported parameters depend on the
typebeing used.- Parameters:
name- The name of the parameter.values- The value of the parameter.- Returns:
this, for method chaining.
-
param
Set the value of a parameter to a given boolean.Supported parameters depend on the
typebeing used.- Parameters:
name- The name of the parameter.value- The value of the parameter.- Returns:
this, for method chaining.
-
param
Set the value of a parameter to a given array of booleans.Supported parameters depend on the
typebeing used.- Parameters:
name- The name of the parameter.values- The value of the parameter.- Returns:
this, for method chaining.
-
param
Set the value of a parameter to a given number (int, long, float, double, ...).Supported parameters depend on the
typebeing used.- Parameters:
name- The name of the parameter.value- The value of the parameter.- Returns:
this, for method chaining.
-
param
Set the value of a parameter to a given array of numbers (int, long, float, double, ...).Supported parameters depend on the
typebeing used.- Parameters:
name- The name of the parameter.values- The value of the parameter.- Returns:
this, for method chaining.
-