JsArray |
Try.arrOrElseThrow() |
Returns the computed JsArray if the parsed string is a well-formed json array, throwing a
MalformedJson exception otherwise.
|
JsObj |
Try.objOrElseThrow() |
Returns the computed JsObj if the parsed string is a well-formed json object, throwing a
MalformedJson exception otherwise.
|
Json<?> |
Try.orElseThrow() |
Returns the computed Json if the parsed string is a well-formed json, throwing a MalformedJson
exception otherwise.
|
JsArray |
TryArr.orElseThrow() |
Returns the computed JsArray if the parsed string is a well-formed json array, throwing a MalformedJson
otherwise.
|
JsObj |
TryObj.orElseThrow() |
Returns the computed JsObj if the parsed string is a well-formed json object, throwing an exception
otherwise.
|