Uses of Interface
javax.json.stream.JsonGenerator
-
Packages that use JsonGenerator Package Description javax.json Provides an object model API to process JSON.javax.json.spi Service Provider Interface (SPI) to plug in implementations for JSON processing objects.javax.json.stream Provides a streaming API to parse and generate JSON.org.glassfish.json -
-
Uses of JsonGenerator in javax.json
Methods in javax.json that return JsonGenerator Modifier and Type Method Description static JsonGeneratorJson. createGenerator(java.io.OutputStream out)Creates a JSON generator for writing JSON to a byte stream.static JsonGeneratorJson. createGenerator(java.io.Writer writer)Creates a JSON generator for writing JSON to a character stream. -
Uses of JsonGenerator in javax.json.spi
Methods in javax.json.spi that return JsonGenerator Modifier and Type Method Description abstract JsonGeneratorJsonProvider. createGenerator(java.io.OutputStream out)Creates a JSON generator for writing JSON text to a byte stream.abstract JsonGeneratorJsonProvider. createGenerator(java.io.Writer writer)Creates a JSON generator for writing JSON text to a character stream. -
Uses of JsonGenerator in javax.json.stream
Methods in javax.json.stream that return JsonGenerator Modifier and Type Method Description JsonGeneratorJsonGeneratorFactory. createGenerator(java.io.OutputStream out)Creates a JSON generator to write JSON text to a byte stream.JsonGeneratorJsonGeneratorFactory. createGenerator(java.io.OutputStream out, java.nio.charset.Charset charset)Creates a JSON generator to write JSON text to a byte stream.JsonGeneratorJsonGeneratorFactory. createGenerator(java.io.Writer writer)Creates a JSON generator to write JSON text to a character stream.JsonGeneratorJsonGenerator. write(boolean value)Writes a JSON true or false value within the current array, field or root context.JsonGeneratorJsonGenerator. write(double value)Writes the specified value as a JSON number value within the current array, field or root context.JsonGeneratorJsonGenerator. write(int value)Writes the specified value as a JSON number value within the current array, field or root context.JsonGeneratorJsonGenerator. write(long value)Writes the specified value as a JSON number value within the current array, field or root context.JsonGeneratorJsonGenerator. write(java.lang.String value)Writes the specified value as a JSON string value within the current array, field or root context.JsonGeneratorJsonGenerator. write(java.lang.String name, boolean value)Writes a JSON name/boolean value pair in the current object context.JsonGeneratorJsonGenerator. write(java.lang.String name, double value)Writes a JSON name/number value pair in the current object context.JsonGeneratorJsonGenerator. write(java.lang.String name, int value)Writes a JSON name/number value pair in the current object context.JsonGeneratorJsonGenerator. write(java.lang.String name, long value)Writes a JSON name/number value pair in the current object context.JsonGeneratorJsonGenerator. write(java.lang.String name, java.lang.String value)Writes a JSON name/string value pair in the current object context.JsonGeneratorJsonGenerator. write(java.lang.String name, java.math.BigDecimal value)Writes a JSON name/number value pair in the current object context.JsonGeneratorJsonGenerator. write(java.lang.String name, java.math.BigInteger value)Writes a JSON name/number value pair in the current object context.JsonGeneratorJsonGenerator. write(java.lang.String name, JsonValue value)Writes a JSON name/value pair in the current object context.JsonGeneratorJsonGenerator. write(java.math.BigDecimal value)Writes the specified value as a JSON number value within the current array, field or root context.JsonGeneratorJsonGenerator. write(java.math.BigInteger value)Writes the specified value as a JSON number value within the current array, field or root context.JsonGeneratorJsonGenerator. write(JsonValue value)Writes the specified value as a JSON value within the current array, field or root context.JsonGeneratorJsonGenerator. writeEnd()Writes the end of the current context.JsonGeneratorJsonGenerator. writeKey(java.lang.String name)Writes the JSON name with a colon.JsonGeneratorJsonGenerator. writeNull()Writes a JSON null value within the current array, field or root context.JsonGeneratorJsonGenerator. writeNull(java.lang.String name)Writes a JSON name/null value pair in an current object context.JsonGeneratorJsonGenerator. writeStartArray()Writes the JSON start array character.JsonGeneratorJsonGenerator. writeStartArray(java.lang.String name)Writes the JSON name/start array character pair with in the current object context.JsonGeneratorJsonGenerator. writeStartObject()Writes the JSON start object character.JsonGeneratorJsonGenerator. writeStartObject(java.lang.String name)Writes the JSON name/start object character pair in the current object context. -
Uses of JsonGenerator in org.glassfish.json
Classes in org.glassfish.json that implement JsonGenerator Modifier and Type Class Description (package private) classJsonGeneratorImplclassJsonPrettyGeneratorImplMethods in org.glassfish.json that return JsonGenerator Modifier and Type Method Description JsonGeneratorJsonGeneratorFactoryImpl. createGenerator(java.io.OutputStream out)JsonGeneratorJsonGeneratorFactoryImpl. createGenerator(java.io.OutputStream out, java.nio.charset.Charset charset)JsonGeneratorJsonGeneratorFactoryImpl. createGenerator(java.io.Writer writer)JsonGeneratorJsonProviderImpl. createGenerator(java.io.OutputStream out)JsonGeneratorJsonProviderImpl. createGenerator(java.io.Writer writer)JsonGeneratorJsonGeneratorImpl. write(boolean value)JsonGeneratorJsonGeneratorImpl. write(double value)JsonGeneratorJsonGeneratorImpl. write(int value)JsonGeneratorJsonGeneratorImpl. write(long value)JsonGeneratorJsonGeneratorImpl. write(java.lang.String value)JsonGeneratorJsonGeneratorImpl. write(java.lang.String name, boolean value)JsonGeneratorJsonGeneratorImpl. write(java.lang.String name, double value)JsonGeneratorJsonGeneratorImpl. write(java.lang.String name, int value)JsonGeneratorJsonGeneratorImpl. write(java.lang.String name, long value)JsonGeneratorJsonGeneratorImpl. write(java.lang.String name, java.lang.String fieldValue)JsonGeneratorJsonGeneratorImpl. write(java.lang.String name, java.math.BigDecimal value)JsonGeneratorJsonGeneratorImpl. write(java.lang.String name, java.math.BigInteger value)JsonGeneratorJsonGeneratorImpl. write(java.lang.String name, JsonValue value)JsonGeneratorJsonGeneratorImpl. write(java.math.BigDecimal value)JsonGeneratorJsonGeneratorImpl. write(java.math.BigInteger value)JsonGeneratorJsonGeneratorImpl. write(JsonValue value)JsonGeneratorJsonGeneratorImpl. writeEnd()JsonGeneratorJsonPrettyGeneratorImpl. writeEnd()JsonGeneratorJsonGeneratorImpl. writeKey(java.lang.String name)private JsonGeneratorJsonGeneratorImpl. writeName(java.lang.String name)JsonGeneratorJsonGeneratorImpl. writeNull()JsonGeneratorJsonGeneratorImpl. writeNull(java.lang.String name)JsonGeneratorJsonGeneratorImpl. writeStartArray()JsonGeneratorJsonGeneratorImpl. writeStartArray(java.lang.String name)JsonGeneratorJsonPrettyGeneratorImpl. writeStartArray()JsonGeneratorJsonPrettyGeneratorImpl. writeStartArray(java.lang.String name)JsonGeneratorJsonGeneratorImpl. writeStartObject()JsonGeneratorJsonGeneratorImpl. writeStartObject(java.lang.String name)JsonGeneratorJsonPrettyGeneratorImpl. writeStartObject()JsonGeneratorJsonPrettyGeneratorImpl. writeStartObject(java.lang.String name)
-