Uses of Interface
org.elasticsearch.common.xcontent.XContent

Packages that use XContent
org.elasticsearch.common.xcontent   
org.elasticsearch.common.xcontent.json   
org.elasticsearch.common.xcontent.smile   
org.elasticsearch.common.xcontent.yaml   
 

Uses of XContent in org.elasticsearch.common.xcontent
 

Methods in org.elasticsearch.common.xcontent that return XContent
abstract  XContent XContentType.xContent()
           
static XContent XContentFactory.xContent(byte[] data)
          Guesses the content type based on the provided bytes.
static XContent XContentFactory.xContent(byte[] data, int offset, int length)
          Guesses the content type based on the provided bytes.
static XContent XContentFactory.xContent(BytesReference bytes)
           
static XContent XContentFactory.xContent(CharSequence content)
          Guesses the content (type) based on the provided char sequence.
static XContent XContentFactory.xContent(XContentType type)
          Returns the XContent for the provided content type.
 

Methods in org.elasticsearch.common.xcontent with parameters of type XContent
static XContentBuilder XContentBuilder.builder(XContent xContent)
          Constructs a new builder using a fresh FastByteArrayOutputStream.
 

Constructors in org.elasticsearch.common.xcontent with parameters of type XContent
XContentBuilder(XContent xContent, OutputStream bos)
          Constructs a new builder using the provided xcontent and an OutputStream.
XContentBuilder(XContent xContent, OutputStream bos, Object payload)
          Constructs a new builder using the provided xcontent and an OutputStream.
 

Uses of XContent in org.elasticsearch.common.xcontent.json
 

Classes in org.elasticsearch.common.xcontent.json that implement XContent
 class JsonXContent
          A JSON based content implementation using Jackson.
 

Uses of XContent in org.elasticsearch.common.xcontent.smile
 

Classes in org.elasticsearch.common.xcontent.smile that implement XContent
 class SmileXContent
          A JSON based content implementation using Jackson.
 

Uses of XContent in org.elasticsearch.common.xcontent.yaml
 

Classes in org.elasticsearch.common.xcontent.yaml that implement XContent
 class YamlXContent
          A YAML based content implementation using Jackson.
 



Copyright © 2009-2012. All Rights Reserved.