Uses of Interface
javax.json.JsonObjectBuilder
-
Packages that use JsonObjectBuilder 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 JsonObjectBuilder in javax.json
Methods in javax.json that return JsonObjectBuilder Modifier and Type Method Description JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, boolean value)Adds a name/JsonValue#TRUEor name/JsonValue#FALSEpair to the JSON object associated with this object builder.JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, double value)Adds a name/JsonNumberpair to the JSON object associated with this object builder.JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, int value)Adds a name/JsonNumberpair to the JSON object associated with this object builder.JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, long value)Adds a name/JsonNumberpair to the JSON object associated with this object builder.JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, java.lang.String value)Adds a name/JsonStringpair to the JSON object associated with this object builder.JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, java.math.BigDecimal value)Adds a name/JsonNumberpair to the JSON object associated with this object builder.JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, java.math.BigInteger value)Adds a name/JsonNumberpair to the JSON object associated with this object builder.JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, JsonArrayBuilder builder)Adds a name/JsonArraypair to the JSON object associated with this object builder.JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, JsonObjectBuilder builder)Adds a name/JsonObjectpair to the JSON object associated with this object builder.JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, JsonValue value)Adds a name/JsonValuepair to the JSON object associated with this object builder.JsonObjectBuilderJsonObjectBuilder. addNull(java.lang.String name)Adds a name/JsonValue#NULLpair to the JSON object associated with this object builder where the value isnull.static JsonObjectBuilderJson. createObjectBuilder()Creates a JSON object builderJsonObjectBuilderJsonBuilderFactory. createObjectBuilder()Creates aJsonObjectBuilderinstance that is used to buildJsonObject.Methods in javax.json with parameters of type JsonObjectBuilder Modifier and Type Method Description JsonArrayBuilderJsonArrayBuilder. add(JsonObjectBuilder builder)Adds aJsonObjectfrom an object builder to the array.JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, JsonObjectBuilder builder)Adds a name/JsonObjectpair to the JSON object associated with this object builder. -
Uses of JsonObjectBuilder in javax.json.spi
Methods in javax.json.spi that return JsonObjectBuilder Modifier and Type Method Description abstract JsonObjectBuilderJsonProvider. createObjectBuilder()Creates a JSON object builder -
Uses of JsonObjectBuilder in org.glassfish.json
Classes in org.glassfish.json that implement JsonObjectBuilder Modifier and Type Class Description (package private) classJsonObjectBuilderImplJsonObjectBuilder implMethods in org.glassfish.json that return JsonObjectBuilder Modifier and Type Method Description JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, boolean value)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, double value)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, int value)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, long value)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, java.lang.String value)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, java.math.BigDecimal value)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, java.math.BigInteger value)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, JsonArrayBuilder builder)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, JsonObjectBuilder builder)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, JsonValue value)JsonObjectBuilderJsonObjectBuilderImpl. addNull(java.lang.String name)JsonObjectBuilderJsonBuilderFactoryImpl. createObjectBuilder()JsonObjectBuilderJsonProviderImpl. createObjectBuilder()Methods in org.glassfish.json with parameters of type JsonObjectBuilder Modifier and Type Method Description JsonArrayBuilderJsonArrayBuilderImpl. add(JsonObjectBuilder builder)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, JsonObjectBuilder builder)private JsonObjectJsonReaderImpl. readObject(JsonObjectBuilder builder)
-