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