Package javax.json
Interface JsonArrayBuilder
-
public interface JsonArrayBuilderA builder for creatingJsonArraymodels from scratch. This interface initializes an empty JSON array model and provides methods to add values to the array model and to return the resulting array. The methods in this class can be chained to add multiple values to the array.The class
Jsoncontains methods to create the builder object. The example code below shows how to build an emptyJsonArrayinstance.JsonArray array = Json.createArrayBuilder().build();The class
JsonBuilderFactoryalso contains methods to createJsonArrayBuilderinstances. A factory instance can be used to create multiple builder instances with the same configuration. This the preferred way to create multiple instances. The example code below shows how to build aJsonArrayobject that represents the following JSON array:[ { "type": "home", "number": "212 555-1234" }, { "type": "fax", "number": "646 555-4567" } ]The following code creates the JSON array above:
JsonBuilderFactory factory = Json.createBuilderFactory(config); JsonArray value = factory.createArrayBuilder() .add(factory.createObjectBuilder() .add("type", "home") .add("number", "212 555-1234")) .add(factory.createObjectBuilder() .add("type", "fax") .add("number", "646 555-4567")) .build();This class does not allow null to be used as a value while building the JSON array
- See Also:
JsonObjectBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JsonArrayBuilderadd(boolean value)Adds aJsonValue.TRUEorJsonValue.FALSEvalue to the array.JsonArrayBuilderadd(double value)Adds a value to the array as aJsonNumber.JsonArrayBuilderadd(int value)Adds a value to the array as aJsonNumber.JsonArrayBuilderadd(long value)Adds a value to the array as aJsonNumber.JsonArrayBuilderadd(String value)Adds a value to the array as aJsonString.JsonArrayBuilderadd(BigDecimal value)Adds a value to the array as aJsonNumber.JsonArrayBuilderadd(BigInteger value)Adds a value to the array as aJsonNumber.JsonArrayBuilderadd(JsonArrayBuilder builder)Adds aJsonArrayfrom an array builder to the array.JsonArrayBuilderadd(JsonObjectBuilder builder)Adds aJsonObjectfrom an object builder to the array.JsonArrayBuilderadd(JsonValue value)Adds a value to the array.JsonArrayBuilderaddNull()Adds aJsonValue.NULLvalue to the array.JsonArraybuild()Returns the current array.
-
-
-
Method Detail
-
add
JsonArrayBuilder add(JsonValue value)
Adds a value to the array.- Parameters:
value- the JSON value- Returns:
- this array builder
- Throws:
NullPointerException- if the specified value is null
-
add
JsonArrayBuilder add(String value)
Adds a value to the array as aJsonString.- Parameters:
value- the string value- Returns:
- this array builder
- Throws:
NullPointerException- if the specified value is null
-
add
JsonArrayBuilder add(BigDecimal value)
Adds a value to the array as aJsonNumber.- Parameters:
value- the number value- Returns:
- this array builder
- Throws:
NullPointerException- if the specified value is null- See Also:
JsonNumber
-
add
JsonArrayBuilder add(BigInteger value)
Adds a value to the array as aJsonNumber.- Parameters:
value- the number value- Returns:
- this array builder
- Throws:
NullPointerException- if the specified value is null- See Also:
JsonNumber
-
add
JsonArrayBuilder add(int value)
Adds a value to the array as aJsonNumber.- Parameters:
value- the number value- Returns:
- this array builder
- See Also:
JsonNumber
-
add
JsonArrayBuilder add(long value)
Adds a value to the array as aJsonNumber.- Parameters:
value- the number value- Returns:
- this array builder
- See Also:
JsonNumber
-
add
JsonArrayBuilder add(double value)
Adds a value to the array as aJsonNumber.- Parameters:
value- the number value- Returns:
- this array builder
- Throws:
NumberFormatException- if the value is Not-a-Number(NaN) or infinity- See Also:
JsonNumber
-
add
JsonArrayBuilder add(boolean value)
Adds aJsonValue.TRUEorJsonValue.FALSEvalue to the array.- Parameters:
value- the boolean value- Returns:
- this array builder
-
addNull
JsonArrayBuilder addNull()
Adds aJsonValue.NULLvalue to the array.- Returns:
- this array builder
-
add
JsonArrayBuilder add(JsonObjectBuilder builder)
Adds aJsonObjectfrom an object builder to the array.- Parameters:
builder- the object builder- Returns:
- this array builder
- Throws:
NullPointerException- if the specified builder is null
-
add
JsonArrayBuilder add(JsonArrayBuilder builder)
Adds aJsonArrayfrom an array builder to the array.- Parameters:
builder- the array builder- Returns:
- this array builder
- Throws:
NullPointerException- if the specified builder is null
-
build
JsonArray build()
Returns the current array.- Returns:
- the current JSON array
-
-