Java javax.json JsonObjectBuilder fields, constructors, methods, implement or subclass

Example usage for Java javax.json JsonObjectBuilder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.json JsonObjectBuilder.

The text is from its open source code.

Method

JsonObjectBuilderadd(String name, JsonValue value)
Adds a name/ JsonValue pair to the JSON object associated with this object builder.
JsonObjectBuilderadd(String name, String value)
Adds a name/ JsonString pair to the JSON object associated with this object builder.
JsonObjectBuilderadd(String name, BigInteger value)
Adds a name/ JsonNumber pair to the JSON object associated with this object builder.
JsonObjectBuilderadd(String name, BigDecimal value)
Adds a name/ JsonNumber pair to the JSON object associated with this object builder.
JsonObjectBuilderadd(String name, int value)
Adds a name/ JsonNumber pair to the JSON object associated with this object builder.
JsonObjectBuilderadd(String name, long value)
Adds a name/ JsonNumber pair to the JSON object associated with this object builder.
JsonObjectBuilderadd(String name, double value)
Adds a name/ JsonNumber pair to the JSON object associated with this object builder.
JsonObjectBuilderadd(String name, boolean value)
Adds a name/ JsonValue#TRUE or name/ JsonValue#FALSE pair to the JSON object associated with this object builder.
JsonObjectBuilderadd(String name, JsonObjectBuilder builder)
Adds a name/ JsonObject pair to the JSON object associated with this object builder.
JsonObjectBuilderadd(String name, JsonArrayBuilder builder)
Adds a name/ JsonArray pair to the JSON object associated with this object builder.
JsonObjectBuilderaddNull(String name)
Adds a name/ JsonValue#NULL pair to the JSON object associated with this object builder where the value is null .
JsonObjectbuild()
Returns the JSON object associated with this object builder.