Uses of Interface
org.jdrupes.json.JsonArray
-
-
Uses of JsonArray in org.jdrupes.json
Classes in org.jdrupes.json that implement JsonArray Modifier and Type Class Description static class
JsonArray.DefaultJsonArray
Instances of this class are used as default representations for JSON arrays.static class
JsonArray.JsonArrayWrapper
Instances of this class are used as default representations for JSON arrays.Fields in org.jdrupes.json declared as JsonArray Modifier and Type Field Description static JsonArray
JsonArray. EMPTY_ARRAY
Methods in org.jdrupes.json that return JsonArray Modifier and Type Method Description JsonArray
JsonArray. append(Object value)
JsonArray
JsonArray.DefaultJsonArray. append(Object value)
JsonArray
JsonArray.JsonArrayWrapper. append(Object value)
JsonArray
JsonArray. asArray(int index)
JsonArray
JsonArray.DefaultJsonArray. asArray(int index)
JsonArray
JsonArray.JsonArrayWrapper. asArray(int index)
static JsonArray
JsonArray. create()
Creates a new instance of theJsonArray.DefaultJsonArray
.static JsonArray
JsonArray. from(List<Object> backing)
Creates a wrapper around an existingList<Object>
.static JsonArray
JsonArray. from(JsonArray.DefaultJsonArray backing)
Overloaded to ensure that an existingJsonArray.DefaultJsonArray
is not wrapped again.JsonArray
JsonRpc.DefaultJsonRpc. params()
JsonArray
JsonRpc. params()
The parameters.Methods in org.jdrupes.json that return types with arguments of type JsonArray Modifier and Type Method Description Stream<JsonArray>
JsonArray. arrayStream()
Streams the elements in the array after casting them toJsonArray
s.Stream<JsonArray>
JsonArray.DefaultJsonArray. arrayStream()
Stream<JsonArray>
JsonArray.JsonArrayWrapper. arrayStream()
Methods in org.jdrupes.json with parameters of type JsonArray Modifier and Type Method Description JsonRpc.DefaultJsonRpc
JsonRpc.DefaultJsonRpc. setParams(JsonArray params)
JsonRpc
JsonRpc. setParams(JsonArray params)
-