|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JsonObjectBuilder | |
|---|---|
| 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 JsonObjectBuilder in javax.json |
|---|
| Methods in javax.json that return JsonObjectBuilder | |
|---|---|
JsonObjectBuilder<T> |
JsonObjectBuilder.add(String name,
BigDecimal value)
Associates the specified value with the specified name/key in the JSON object that is being built. |
JsonObjectBuilder<T> |
JsonObjectBuilder.add(String name,
BigInteger value)
Associates the specified value with the specified name/key in the JSON object that is being built. |
JsonObjectBuilder<T> |
JsonObjectBuilder.add(String name,
boolean value)
Associates the specified value with the specified name/key in the JSON object that is being built. |
JsonObjectBuilder<T> |
JsonObjectBuilder.add(String name,
double value)
Associates the specified value with the specified name/key in the JSON object that is being built. |
JsonObjectBuilder<T> |
JsonObjectBuilder.add(String name,
int value)
Associates the specified value with the specified name/key in the JSON object that is being built. |
JsonObjectBuilder<T> |
JsonObjectBuilder.add(String name,
JsonValue value)
Associates the specified value with the specified name/key in the JSON object that is being built. |
JsonObjectBuilder<T> |
JsonObjectBuilder.add(String name,
long value)
Associates the specified value with the specified name/key in the JSON object that is being built. |
JsonObjectBuilder<T> |
JsonObjectBuilder.add(String name,
String value)
Associates the specified value with the specified name/key in the JSON object that is being built. |
JsonObjectBuilder<T> |
JsonObjectBuilder.addNull(String name)
Associates the specified value with the specified name/key in the JSON object that is being built. |
JsonObjectBuilder<JsonBuilder.JsonBuildable<JsonObject>> |
JsonBuilder.beginObject()
Start building a JSON object |
JsonObjectBuilder<JsonArrayBuilder<T>> |
JsonArrayBuilder.beginObject()
Returns a JSON array builder to build a new object value |
JsonObjectBuilder<JsonObjectBuilder<T>> |
JsonObjectBuilder.beginObject(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 JsonObjectBuilder | |
|---|---|
JsonArrayBuilder<JsonObjectBuilder<T>> |
JsonObjectBuilder.beginArray(String name)
Associates the specified value with the specified name/key in the JSON object that is being built. |
JsonObjectBuilder<JsonObjectBuilder<T>> |
JsonObjectBuilder.beginObject(String name)
Associates the specified value with the specified name/key in the JSON object that is being built. |
| Uses of JsonObjectBuilder in javax.json.stream |
|---|
| Methods in javax.json.stream that return JsonObjectBuilder | |
|---|---|
JsonObjectBuilder<Closeable> |
JsonGenerator.beginObject()
Starts writing of a JSON object in a streaming fashion. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||