Json |
Json.getAnyAt(String key) |
The same as getAny, but at a path in the JSON given by key.
|
List<Json> |
Json.getArrayAt(String key) |
The same as getArray, but at a path in the JSON given by key.
|
boolean |
Json.getBooleanAt(String key) |
The same as getBoolean, but at a path in the JSON given by key.
|
JSType |
Json.getDataTypeOf(String key) |
The same as getDataType, but at a path in the JSON given by key.
|
double |
Json.getDoubleAt(String key) |
The same as getDouble, but at a path in the JSON given by key.
|
Json |
Json.getJSONObjectAt(String key) |
The same as getJSONObject, but at a path in the JSON given by key.
|
List<String> |
Json.getKeysOf(String key) |
The same as getKeys, but at a path in the JSON given by key.
|
long |
Json.getLongAt(String key) |
The same as getLong, but at a path in the JSON given by key.
|
String |
Json.getStringAt(String key) |
The same as getString, but at a path in the JSON given by key.
|
Object |
Json.getValueAt(String key) |
The same as getValue, but at a path in the JSON given by key.
|
List<Json> |
Json.getValuesOf(String key) |
The same as getValues, but at a path in the JSON given by key.
|