static DXJSON.ObjectBuilder |
DXJSON.getObjectBuilder() |
Creates a new ObjectBuilder, initialized to produce an empty object.
|
DXJSON.ObjectBuilder |
DXJSON.ObjectBuilder.put(String key,
boolean value) |
Adds a key-value pair with a boolean value and returns the resulting
ObjectBuilder.
|
DXJSON.ObjectBuilder |
DXJSON.ObjectBuilder.put(String key,
double value) |
Adds a key-value pair with a numeric value and returns the resulting
ObjectBuilder.
|
DXJSON.ObjectBuilder |
DXJSON.ObjectBuilder.put(String key,
int value) |
Adds a key-value pair with a numeric value and returns the resulting
ObjectBuilder.
|
DXJSON.ObjectBuilder |
DXJSON.ObjectBuilder.put(String key,
long value) |
Adds a key-value pair with a numeric value and returns the resulting
ObjectBuilder.
|
DXJSON.ObjectBuilder |
DXJSON.ObjectBuilder.put(String key,
com.fasterxml.jackson.databind.JsonNode value) |
Adds a key-value pair with an arbitrary JsonNode value.
|
DXJSON.ObjectBuilder |
DXJSON.ObjectBuilder.put(String key,
String value) |
Adds a key-value pair with a string value and returns the resulting
ObjectBuilder.
|