Class DotExpandingXContentParser

java.lang.Object
org.elasticsearch.xcontent.FilterXContentParser
org.elasticsearch.xcontent.DotExpandingXContentParser
All Implemented Interfaces:
Closeable, AutoCloseable, XContentParser

public class DotExpandingXContentParser extends FilterXContentParser
An XContentParser that reinterprets field names containing dots as an object structure. A field name named "foo.bar.baz":... will be parsed instead as 'foo':{'bar':{'baz':...}}. The token location is preserved so that error messages refer to the original content being parsed.