Package org.elasticsearch.common.xcontent.json

Examples of org.elasticsearch.common.xcontent.json.JsonXContentParser


    @Override public XContentParser createParser(byte[] data, int offset, int length) throws IOException {
        return new SmileXContentParser(smileFactory.createJsonParser(data, offset, length));
    }

    @Override public XContentParser createParser(Reader reader) throws IOException {
        return new JsonXContentParser(smileFactory.createJsonParser(reader));
    }
View Full Code Here

TOP

Related Classes of org.elasticsearch.common.xcontent.json.JsonXContentParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.