Java javax.json Json fields, constructors, methods, implement or subclass

Example usage for Java javax.json Json fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.json Json.

The text is from its open source code.

Method

JsonArrayBuildercreateArrayBuilder()
Creates a JSON array builder
JsonArrayBuildercreateArrayBuilder(JsonArray array)
Creates a JSON array builder, initialized with the specified array
JsonArrayBuildercreateArrayBuilder(Collection collection)
Creates a JSON array builder, initialized with the content of specified collection .
JsonBuilderFactorycreateBuilderFactory(Map config)
Creates a builder factory for creating JsonArrayBuilder and JsonObjectBuilder objects.
JsonGeneratorcreateGenerator(Writer writer)
Creates a JSON generator for writing JSON to a character stream.
JsonGeneratorcreateGenerator(OutputStream out)
Creates a JSON generator for writing JSON to a byte stream.
JsonGeneratorFactorycreateGeneratorFactory(Map config)
Creates a generator factory for creating JsonGenerator objects.
JsonObjectBuildercreateObjectBuilder()
Creates a JSON object builder
JsonObjectBuildercreateObjectBuilder(JsonObject object)
Creates a JSON object builder, initialized with the specified object.
JsonObjectBuildercreateObjectBuilder(Map map)
Creates a JSON object builder, initialized with the data from specified map .
JsonParsercreateParser(Reader reader)
Creates a JSON parser from a character stream.
JsonParsercreateParser(InputStream in)
Creates a JSON parser from a byte stream.
JsonReadercreateReader(Reader reader)
Creates a JSON reader from a character stream.
JsonReadercreateReader(InputStream in)
Creates a JSON reader from a byte stream.
JsonReaderFactorycreateReaderFactory(Map config)
Creates a reader factory for creating JsonReader objects.
JsonWritercreateWriter(Writer writer)
Creates a JSON writer to write a JSON JsonObject object or JsonArray array structure to the specified character stream.
JsonWritercreateWriter(OutputStream out)
Creates a JSON writer to write a JSON JsonObject object or JsonArray array structure to the specified byte stream.
JsonWriterFactorycreateWriterFactory(Map config)
Creates a writer factory for creating JsonWriter objects.