Uses of Interface
javax.json.JsonArray

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

Methods in javax.json that return JsonArray
 JsonArray JsonReader.readArray()
          Returns a JSON array that is represented in the input source.
 

Methods in javax.json that return types with arguments of type JsonArray
 JsonArrayBuilder<JsonBuilder.JsonBuildable<JsonArray>> JsonBuilder.beginArray()
          Start building a JSON array
 

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

Uses of JsonArray in javax.json.spi
 

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

Uses of JsonArray in javax.json.stream
 

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




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