| Package | Description |
|---|---|
| javax.json |
Provides an object model API to process JSON.
|
| javax.json.stream |
Provides a streaming API to parse and generate
JSON.
|
| org.glassfish.json |
| Modifier and Type | Method and Description |
|---|---|
JsonObject |
JsonObjectBuilder.build()
Returns the JSON object associated with this object builder.
|
JsonObject |
JsonArray.getJsonObject(int index)
Returns the object value at the specified position in this array.
|
JsonObject |
JsonObject.getJsonObject(java.lang.String name)
Returns the object value to which the specified name is mapped.
|
JsonObject |
JsonReader.readObject()
Returns a JSON object that is represented in
the input source.
|
| Modifier and Type | Method and Description |
|---|---|
void |
JsonWriter.writeObject(JsonObject object)
Writes the specified JSON
object to the output
source. |
| Modifier and Type | Method and Description |
|---|---|
JsonParser |
JsonParserFactory.createParser(JsonObject obj)
Creates a JSON parser from the specified JSON object.
|
| Modifier and Type | Class and Description |
|---|---|
private static class |
JsonObjectBuilderImpl.JsonObjectImpl |
| Modifier and Type | Method and Description |
|---|---|
JsonObject |
JsonObjectBuilderImpl.build() |
JsonObject |
JsonArrayBuilderImpl.JsonArrayImpl.getJsonObject(int index) |
JsonObject |
JsonObjectBuilderImpl.JsonObjectImpl.getJsonObject(java.lang.String name) |
JsonObject |
JsonReaderImpl.readObject() |
private JsonObject |
JsonReaderImpl.readObject(JsonObjectBuilder builder) |
| Modifier and Type | Method and Description |
|---|---|
JsonParser |
JsonParserFactoryImpl.createParser(JsonObject object) |
void |
JsonWriterImpl.writeObject(JsonObject object) |
| Constructor and Description |
|---|
JsonStructureParser(JsonObject object) |
ObjectScope(JsonObject object) |