| Modifier and Type | Method and Description |
|---|---|
static JsonArray |
JsonArray.from(Object... contents)
Creates a
JsonArray from an array of contents. |
JsonArray |
JsonArray.getArray(int key)
Returns the
JsonArray at the given index, or null if it does not exist or is the wrong type. |
JsonArray |
JsonArray.getArray(int key,
JsonArray default_)
Returns the
JsonArray at the given index, or the default if it does not exist or is the wrong type. |
JsonArray |
JsonObject.getArray(String key)
Returns the
JsonArray at the given key, or null if it does not exist or is the wrong type. |
JsonArray |
JsonObject.getArray(String key,
JsonArray default_)
Returns the
JsonArray at the given key, or the default if it does not exist or is the wrong type. |
| Modifier and Type | Method and Description |
|---|---|
static JsonParser.JsonParserContext<JsonArray> |
JsonParser.array()
Parses a
JsonArray from a source. |
static JsonBuilder<JsonArray> |
JsonArray.builder()
Creates a
JsonBuilder for a JsonArray. |
| Modifier and Type | Method and Description |
|---|---|
JsonArray |
JsonArray.getArray(int key,
JsonArray default_)
Returns the
JsonArray at the given index, or the default if it does not exist or is the wrong type. |
JsonArray |
JsonObject.getArray(String key,
JsonArray default_)
Returns the
JsonArray at the given key, or the default if it does not exist or is the wrong type. |
Copyright © 2020. All rights reserved.