public class MockJsonFactory extends JsonFactory
Constructors
MockJsonFactory()
public MockJsonFactory()
Methods
createJsonGenerator(OutputStream out, Charset enc)
public JsonGenerator createJsonGenerator(OutputStream out, Charset enc)
Returns a new instance of a low-level JSON serializer for the given output stream and encoding.
Parameters | |
---|---|
Name | Description |
out | OutputStream |
enc | Charset |
Returns | |
---|---|
Type | Description |
JsonGenerator |
Exceptions | |
---|---|
Type | Description |
IOException |
createJsonGenerator(Writer writer)
public JsonGenerator createJsonGenerator(Writer writer)
Returns a new instance of a low-level JSON serializer for the given writer.
Parameter | |
---|---|
Name | Description |
writer | Writer |
Returns | |
---|---|
Type | Description |
JsonGenerator |
Exceptions | |
---|---|
Type | Description |
IOException |
createJsonParser(InputStream in)
public JsonParser createJsonParser(InputStream in)
Returns a new instance of a low-level JSON parser for the given input stream. The parser tries to detect the charset of the input stream by itself.
Parameter | |
---|---|
Name | Description |
in | InputStream |
Returns | |
---|---|
Type | Description |
JsonParser |
Exceptions | |
---|---|
Type | Description |
IOException |
createJsonParser(InputStream in, Charset charset)
public JsonParser createJsonParser(InputStream in, Charset charset)
Returns a new instance of a low-level JSON parser for the given input stream.
Parameters | |
---|---|
Name | Description |
in | InputStream |
charset | Charset |
Returns | |
---|---|
Type | Description |
JsonParser |
Exceptions | |
---|---|
Type | Description |
IOException |
createJsonParser(Reader reader)
public JsonParser createJsonParser(Reader reader)
Returns a new instance of a low-level JSON parser for the given reader.
Parameter | |
---|---|
Name | Description |
reader | Reader |
Returns | |
---|---|
Type | Description |
JsonParser |
Exceptions | |
---|---|
Type | Description |
IOException |
createJsonParser(String value)
public JsonParser createJsonParser(String value)
Returns a new instance of a low-level JSON parser for the given string value.
Parameter | |
---|---|
Name | Description |
value | String |
Returns | |
---|---|
Type | Description |
JsonParser |
Exceptions | |
---|---|
Type | Description |
IOException |