Uses of Interface
javax.json.JsonArrayBuilder

Packages that use JsonArrayBuilder
javax.json Java API for JSON Processing (JSON-P) API provides a way to process (for e.g. 
javax.json.stream Provides a streaming API to parse and generate JSON
 

Uses of JsonArrayBuilder in javax.json
 

Methods in javax.json that return JsonArrayBuilder
 JsonArrayBuilder<T> JsonArrayBuilder.add(BigDecimal value)
          Adds the specified value as a JSON number value to the array that is being built.
 JsonArrayBuilder<T> JsonArrayBuilder.add(BigInteger value)
          Adds the specified value as a JSON number value to the array that is being built.
 JsonArrayBuilder<T> JsonArrayBuilder.add(boolean value)
          Adds a JSON true or false value to the array that is being built.
 JsonArrayBuilder<T> JsonArrayBuilder.add(double value)
          Adds the specified value as a JSON number value to the array that is being built.
 JsonArrayBuilder<T> JsonArrayBuilder.add(int value)
          Adds the specified value as a JSON number value to the array that is being built.
 JsonArrayBuilder<T> JsonArrayBuilder.add(JsonValue value)
          Adds the specified value to the array that is being built.
 JsonArrayBuilder<T> JsonArrayBuilder.add(long value)
          Adds the specified value as a JSON number value to the array that is being built.
 JsonArrayBuilder<T> JsonArrayBuilder.add(String value)
          Adds the specified value as a JSON string value to the array that is being built.
 JsonArrayBuilder<T> JsonArrayBuilder.addNull()
          Adds the JSON null value to the array that is being built.
 JsonArrayBuilder<JsonBuilder.JsonBuildable<JsonArray>> JsonBuilder.beginArray()
          Start building a JSON array
 JsonArrayBuilder<JsonArrayBuilder<T>> JsonArrayBuilder.beginArray()
          Returns a JSON array builder to build a new array value
 JsonArrayBuilder<JsonObjectBuilder<T>> JsonObjectBuilder.beginArray(String name)
          Associates the specified value with the specified name/key in the JSON object that is being built.
 

Methods in javax.json that return types with arguments of type JsonArrayBuilder
 JsonArrayBuilder<JsonArrayBuilder<T>> JsonArrayBuilder.beginArray()
          Returns a JSON array builder to build a new array value
 JsonObjectBuilder<JsonArrayBuilder<T>> JsonArrayBuilder.beginObject()
          Returns a JSON array builder to build a new object value
 

Uses of JsonArrayBuilder in javax.json.stream
 

Methods in javax.json.stream that return JsonArrayBuilder
 JsonArrayBuilder<Closeable> JsonGenerator.beginArray()
          Starts writing of a JSON array in a streaming fashion.
 




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