public interface XContent
| Modifier and Type | Method and Description |
|---|---|
XContentGenerator |
createGenerator(OutputStream os)
Creates a new generator using the provided output stream.
|
XContentGenerator |
createGenerator(OutputStream os,
String[] filters)
Creates a new generator using the provided output stream and some filters.
|
XContentParser |
createParser(byte[] data)
Creates a parser over the provided bytes.
|
XContentParser |
createParser(byte[] data,
int offset,
int length)
Creates a parser over the provided bytes.
|
XContentParser |
createParser(BytesReference bytes)
Creates a parser over the provided bytes.
|
XContentParser |
createParser(InputStream is)
Creates a parser over the provided input stream.
|
XContentParser |
createParser(Reader reader)
Creates a parser over the provided reader.
|
XContentParser |
createParser(String content)
Creates a parser over the provided string content.
|
byte |
streamSeparator() |
XContentType |
type()
The type this content handles and produces.
|
XContentType type()
byte streamSeparator()
XContentGenerator createGenerator(OutputStream os) throws IOException
IOExceptionXContentGenerator createGenerator(OutputStream os, String[] filters) throws IOException
IOExceptionXContentParser createParser(String content) throws IOException
IOExceptionXContentParser createParser(InputStream is) throws IOException
IOExceptionXContentParser createParser(byte[] data) throws IOException
IOExceptionXContentParser createParser(byte[] data, int offset, int length) throws IOException
IOExceptionXContentParser createParser(BytesReference bytes) throws IOException
IOExceptionXContentParser createParser(Reader reader) throws IOException
IOExceptionCopyright © 2009–2017. All rights reserved.