Uses of Interface
javax.json.JsonObject

Packages that use JsonObject
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 JsonObject in javax.json
 

Methods in javax.json that return JsonObject
 JsonObject JsonReader.readObject()
          Returns a JSON object that is represented in the input source.
 

Methods in javax.json that return types with arguments of type JsonObject
 JsonObjectBuilder<JsonBuilder.JsonBuildable<JsonObject>> JsonBuilder.beginObject()
          Start building a JSON object
 

Methods in javax.json with parameters of type JsonObject
static JsonParser Json.createParser(JsonObject object)
          Creates a JSON parser from the specified JSON object.
static JsonParser Json.createParser(JsonObject obj, JsonConfiguration config)
          Creates a JSON parser from the specified JSON object.
 void JsonWriter.writeObject(JsonObject object)
          Writes the specified JSON object to the output source.
 

Uses of JsonObject in javax.json.spi
 

Methods in javax.json.spi with parameters of type JsonObject
abstract  JsonParser JsonProvider.createParser(JsonObject object)
          Creates a JSON parser from the specified JSON object.
abstract  JsonParser JsonProvider.createParser(JsonObject object, JsonConfiguration config)
          Creates a JSON parser from the specified JSON object.
 

Uses of JsonObject in javax.json.stream
 

Methods in javax.json.stream with parameters of type JsonObject
 JsonParser JsonParserFactory.createParser(JsonObject obj)
          Creates a JSON parser from the specified JSON object.
 




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