|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JsonGenerator | |
|---|---|
| javax.json | Java API for JSON Processing (JSON-P) API provides a way to process (for e.g. |
| javax.json.spi | SPI to plugin implementations for JsonParser
and JsonGenerator portably. |
| javax.json.stream | Provides a streaming API to parse and generate JSON. |
| Uses of JsonGenerator in javax.json |
|---|
| Methods in javax.json that return JsonGenerator | |
|---|---|
static JsonGenerator |
Json.createGenerator(OutputStream out)
Creates a JSON generator which can be used to write JSON text to the specified byte stream. |
static JsonGenerator |
Json.createGenerator(OutputStream out,
JsonConfiguration config)
Creates a JSON generator which can be used to write JSON text to the specified byte stream. |
static JsonGenerator |
Json.createGenerator(OutputStream out,
String encoding)
Creates a JSON generator which can be used to write JSON text to the specified byte stream. |
static JsonGenerator |
Json.createGenerator(OutputStream out,
String encoding,
JsonConfiguration config)
Creates a JSON generator which can be used to write JSON text to the specified byte stream. |
static JsonGenerator |
Json.createGenerator(Writer writer)
Creates a JSON generator which can be used to write JSON text to the specified character stream. |
static JsonGenerator |
Json.createGenerator(Writer writer,
JsonConfiguration config)
Creates a JSON generator which can be used to write JSON text to the specified character stream. |
| Uses of JsonGenerator in javax.json.spi |
|---|
| Methods in javax.json.spi that return JsonGenerator | |
|---|---|
abstract JsonGenerator |
JsonProvider.createGenerator(OutputStream out)
Creates a JSON generator which can be used to write JSON text to the specified byte stream. |
abstract JsonGenerator |
JsonProvider.createGenerator(OutputStream out,
JsonConfiguration config)
Creates a JSON generator which can be used to write JSON text to the specified byte stream. |
abstract JsonGenerator |
JsonProvider.createGenerator(OutputStream out,
String encoding)
Creates a JSON generator which can be used to write JSON text to the specified byte stream. |
abstract JsonGenerator |
JsonProvider.createGenerator(OutputStream out,
String encoding,
JsonConfiguration config)
Creates a JSON generator which can be used to write JSON text to the specified byte stream. |
abstract JsonGenerator |
JsonProvider.createGenerator(Writer writer)
Creates a JSON generator which can be used to write JSON text to the specified character stream. |
abstract JsonGenerator |
JsonProvider.createGenerator(Writer writer,
JsonConfiguration config)
Creates a JSON generator which can be used to write JSON text to the specified character stream. |
| Uses of JsonGenerator in javax.json.stream |
|---|
| Methods in javax.json.stream that return JsonGenerator | |
|---|---|
JsonGenerator |
JsonGeneratorFactory.createGenerator(OutputStream out)
Creates a JSON generator which can be used to write JSON text to the specified byte stream. |
JsonGenerator |
JsonGeneratorFactory.createGenerator(OutputStream out,
String encoding)
Creates a JSON generator which can be used to write JSON text to the specified byte stream. |
JsonGenerator |
JsonGeneratorFactory.createGenerator(Writer writer)
Creates a JSON generator which can be used to write JSON text to the specified character stream. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||