DXJSON.ArrayBuilder |
DXJSON.ArrayBuilder.add(com.fasterxml.jackson.databind.JsonNode value) |
Adds the specified JsonNode to the end of the array.
|
DXJSON.ArrayBuilder |
DXJSON.ArrayBuilder.add(String value) |
Adds the specified String to the end of the array.
|
DXJSON.ArrayBuilder |
DXJSON.ArrayBuilder.addAll(List<com.fasterxml.jackson.databind.JsonNode> values) |
Adds the specified JsonNode objects, in order, to the end of the
array.
|
DXJSON.ArrayBuilder |
DXJSON.ArrayBuilder.addAllStrings(List<String> values) |
Adds the specified String objects, in order, to the end of the array.
|
static DXJSON.ArrayBuilder |
DXJSON.getArrayBuilder() |
Creates a new ArrayBuilder, initialized to produce an empty array.
|