Uses of Class
jsonvalues.MalformedJson
-
Packages that use MalformedJson Package Description jsonvalues json-values is a one-package and zero-dependency library to work with jsons in a declarative and functional way. -
-
Uses of MalformedJson in jsonvalues
Methods in jsonvalues that throw MalformedJson Modifier and Type Method Description static JsArray
JsArray. parse(String str)
Tries to parse the string into an immutable json array.static JsArray
JsArray. parse(String str, ParseBuilder builder)
static JsObj
JsObj. parse(String str)
Tries to parse the string into an immutable object.static JsObj
JsObj. parse(String str, ParseBuilder builder)
Tries to parse the string into an immutable object, performing the specified transformations during the parsing.static Json<?>
Json. parse(String str)
Tries to parse the string into an immutable json.static Json<?>
Json. parse(String str, ParseBuilder builder)
Tries to parse the string into an immutable json, performing the specified transformations while the parsing.
-