set #
Adds or updates a field mapping.
Changes made by this function won't be applied until you call the apply
method
set(field, mapping) #
Arguments | Type | Description |
---|---|---|
field | string | Name of the field from which the mapping is to be added or updated |
mapping | JSON Object | Mapping for this field, following the Elasticsearch Mapping format |
Return Value #
Returns this CollectionMapping
object to allow chaining.
Usage #
JSONObject mapping = new JSONObject();
mapping.put("type", "string");
mapping.put("index", "analyzed");
mapping.put("null_value", "");
dataMapping.set("field", mapping);
Edit this page on Github(opens new window)