Uses of Interface
javax.json.JsonArrayBuilder
-
Packages that use JsonArrayBuilder Package Description javax.json Provides an object model API to process JSON.javax.json.spi Service Provider Interface (SPI) to plug in implementations for JSON processing objects.org.glassfish.json -
-
Uses of JsonArrayBuilder in javax.json
Methods in javax.json that return JsonArrayBuilder Modifier and Type Method Description JsonArrayBuilderJsonArrayBuilder. add(boolean value)Adds aJsonValue.TRUEorJsonValue.FALSEvalue to the array.JsonArrayBuilderJsonArrayBuilder. add(double value)Adds a value to the array as aJsonNumber.JsonArrayBuilderJsonArrayBuilder. add(int value)Adds a value to the array as aJsonNumber.JsonArrayBuilderJsonArrayBuilder. add(long value)Adds a value to the array as aJsonNumber.JsonArrayBuilderJsonArrayBuilder. add(String value)Adds a value to the array as aJsonString.JsonArrayBuilderJsonArrayBuilder. add(BigDecimal value)Adds a value to the array as aJsonNumber.JsonArrayBuilderJsonArrayBuilder. add(BigInteger value)Adds a value to the array as aJsonNumber.JsonArrayBuilderJsonArrayBuilder. add(JsonArrayBuilder builder)Adds aJsonArrayfrom an array builder to the array.JsonArrayBuilderJsonArrayBuilder. add(JsonObjectBuilder builder)Adds aJsonObjectfrom an object builder to the array.JsonArrayBuilderJsonArrayBuilder. add(JsonValue value)Adds a value to the array.JsonArrayBuilderJsonArrayBuilder. addNull()Adds aJsonValue.NULLvalue to the array.static JsonArrayBuilderJson. createArrayBuilder()Creates a JSON array builderJsonArrayBuilderJsonBuilderFactory. createArrayBuilder()Creates aJsonArrayBuilderinstance that is used to buildJsonArrayMethods in javax.json with parameters of type JsonArrayBuilder Modifier and Type Method Description JsonArrayBuilderJsonArrayBuilder. add(JsonArrayBuilder builder)Adds aJsonArrayfrom an array builder to the array.JsonObjectBuilderJsonObjectBuilder. add(String name, JsonArrayBuilder builder)Adds a name/JsonArraypair to the JSON object associated with this object builder. -
Uses of JsonArrayBuilder in javax.json.spi
Methods in javax.json.spi that return JsonArrayBuilder Modifier and Type Method Description abstract JsonArrayBuilderJsonProvider. createArrayBuilder()Creates a JSON array builder -
Uses of JsonArrayBuilder in org.glassfish.json
Methods in org.glassfish.json that return JsonArrayBuilder Modifier and Type Method Description JsonArrayBuilderJsonProviderImpl. createArrayBuilder()
-