| Package | Description |
|---|---|
| javax.json |
Java API for JSON Processing API provides a way to process
(for e.g.
|
| Modifier and Type | Method and Description |
|---|---|
JsonObjectBuilder |
JsonObjectBuilder.add(String name,
BigDecimal value)
Associates the specified value with the specified name in the
JSON object that is being built.
|
JsonObjectBuilder |
JsonObjectBuilder.add(String name,
BigInteger value)
Associates the specified value with the specified name in the
JSON object that is being built.
|
JsonObjectBuilder |
JsonObjectBuilder.add(String name,
boolean value)
Associates the specified value with the specified name in the
JSON object that is being built.
|
JsonObjectBuilder |
JsonObjectBuilder.add(String name,
double value)
Associates the specified value with the specified name in the
JSON object that is being built.
|
JsonObjectBuilder |
JsonObjectBuilder.add(String name,
int value)
Associates the specified value with the specified name in the
JSON object that is being built.
|
JsonObjectBuilder |
JsonObjectBuilder.add(String name,
JsonArrayBuilder builder)
Associates the JSON array from the specified builder with the
specified name in the JSON object that is being built.
|
JsonObjectBuilder |
JsonObjectBuilder.add(String name,
JsonObjectBuilder builder)
Associates the JsonObject from the specified builder with the
specified name in the JSON object that is being built.
|
JsonObjectBuilder |
JsonObjectBuilder.add(String name,
JsonValue value)
Associates the specified value with the specified name in the
JSON object that is being built.
|
JsonObjectBuilder |
JsonObjectBuilder.add(String name,
long value)
Associates the specified value with the specified name in the
JSON object that is being built.
|
JsonObjectBuilder |
JsonObjectBuilder.add(String name,
String value)
Associates the specified value with the specified name in the
JSON object that is being built.
|
JsonObjectBuilder |
JsonObjectBuilder.addNull(String name)
Associates the specified value with the specified name in the
JSON object that is being built.
|
| Modifier and Type | Method and Description |
|---|---|
JsonArrayBuilder |
JsonArrayBuilder.add(JsonObjectBuilder builder)
Adds a JsonObject from the specified builder to the array that
is being built.
|
JsonObjectBuilder |
JsonObjectBuilder.add(String name,
JsonObjectBuilder builder)
Associates the JsonObject from the specified builder with the
specified name in the JSON object that is being built.
|
Copyright © 2013. All Rights Reserved.