Interface ElasticsearchNativeIndexFieldTypeMappingStep
-
public interface ElasticsearchNativeIndexFieldTypeMappingStep
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ElasticsearchNativeIndexFieldTypeOptionsStep<?>mapping(com.google.gson.JsonObject jsonObject)ElasticsearchNativeIndexFieldTypeOptionsStep<?>mapping(String jsonString)
-
-
-
Method Detail
-
mapping
ElasticsearchNativeIndexFieldTypeOptionsStep<?> mapping(com.google.gson.JsonObject jsonObject)
- Parameters:
jsonObject- AJsonObjectrepresenting an Elasticsearch field mapping. The JSON object must be a syntactically correct Elasticsearch field mapping. See the Elasticsearch documentation.- Returns:
- A DSL step where the index field type can be defined in more details.
-
mapping
ElasticsearchNativeIndexFieldTypeOptionsStep<?> mapping(String jsonString)
- Parameters:
jsonString- A JSON-formatted string representing an Elasticsearch field mapping. The JSON object must be a syntactically correct Elasticsearch field mapping. See the Elasticsearch documentation.- Returns:
- A DSL step where the index field type can be defined in more details.
-
-