Package javax.json

Java API for JSON Processing (JSON-P) API provides a way to process (for e.g.

See:
          Description

Interface Summary
JsonArray JsonArray class represents an immutable JSON array value.
JsonArrayBuilder<T> Helps in building a JSON array.
JsonBuilder.JsonBuildable<T extends JsonStructure> Build task that gives the result of the build process
JsonFeature JSON feature configures the behaviour of parsing and generation of JSON.
JsonNumber JsonNumber represents a JSON number value and internally a BigDecimal may be used to store the numeric value.
JsonObject JsonObject class represents an immutable JSON object value.
JsonObjectBuilder<T> Helps in building a JSON object.
JsonString JsonString represents a JSON string value
JsonStructure Super type for JSON's two structured types (objects and arrays).
JsonValue JsonValue represents a JSON value.
 

Class Summary
Json Factory to create JsonParser, JsonGenerator, JsonParserFactory and JsonGeneratorFactory instances.
JsonBuilder Builds a JSON object or array from scratch.
JsonConfiguration JSON configuration is a set features that is used to configure the behaviour of parsing and generation of JSON.
JsonReader A JSON reader that reads a JSON object or array from an input source.
JsonWriter A JSON writer that writes a JSON object or array structure to an output source.
 

Enum Summary
JsonNumber.JsonNumberType JSON number type
JsonValue.JsonValueType JSON value type
 

Exception Summary
JsonException JsonException indicates some exception happened during JSON processing.
 

Package javax.json Description

Java API for JSON Processing (JSON-P) API provides a way to process (for e.g. parse, generate, transform and query) JSON. This API can be used to:

The object model API uses builder pattern to build object models of JSON object and array from scratch.

Since:
JSON-P 1.0
Author:
Jitendra Kotamraju



Copyright © 2012 Oracle and/or its affiliates. All rights reserved.