Uses of Class
io.vertx.core.json.JsonArray
-
Packages that use JsonArray Package Description io.vertx.core.buffer io.vertx.core.json io.vertx.core.parsetools -
-
Uses of JsonArray in io.vertx.core.buffer
Methods in io.vertx.core.buffer that return JsonArray Modifier and Type Method Description JsonArrayBuffer. toJsonArray()Returns aJsonArrayrepresentation of this buffer's content. -
Uses of JsonArray in io.vertx.core.json
Methods in io.vertx.core.json that return JsonArray Modifier and Type Method Description JsonArrayJsonArray. add(int pos, Object value)Add an Object to the JSON array at given positionpos.JsonArrayJsonArray. add(Object value)Add an Object to the JSON array.JsonArrayJsonArray. addAll(JsonArray array)Appends all of the elements in the specified array to the end of this JSON array.JsonArrayJsonArray. addNull()Add a null value to the JSON array.JsonArrayJsonArray. clear()Remove all entries from the JSON arrayJsonArrayJsonArray. copy()Deep copy of the JSON array.JsonArrayJsonArray. copy(Function<Object,?> cloner)Deep copy of the JSON array.JsonArrayJsonArray. getJsonArray(int pos)Get the JsonArray at positionposin the array.JsonArrayJsonObject. getJsonArray(String key)Get the JsonArray value with the specified keyJsonArrayJsonObject. getJsonArray(String key, JsonArray def)LikeJsonObject.getJsonArray(String)but specifying a default value to return if there is no entry.static JsonArrayJsonArray. of(Object... values)Create a JsonArray containing an arbitrary number of values.JsonArrayJsonArray. set(int pos, Object value)Set an Object to the JSON array at positionpos.JsonArrayJsonArray. setNull(int pos)Set a null value to the JSON array at positionpos.Methods in io.vertx.core.json with parameters of type JsonArray Modifier and Type Method Description JsonArrayJsonArray. addAll(JsonArray array)Appends all of the elements in the specified array to the end of this JSON array.JsonArrayJsonObject. getJsonArray(String key, JsonArray def)LikeJsonObject.getJsonArray(String)but specifying a default value to return if there is no entry. -
Uses of JsonArray in io.vertx.core.parsetools
Methods in io.vertx.core.parsetools that return JsonArray Modifier and Type Method Description JsonArrayJsonEvent. arrayValue()
-