Populates with a JSON object:
null
are conservedJsonArray
is converted to List
JsonObject
is converted to Map
Note that nested JSON elements are converted to a string, so { "user": { "first_name": "John", "last_name": "Doe", "address" : { "city": "Paris", etc... } } } flattens the JSON "address" to the string "{"city":"Paris",etc...}".
Like {@link Variables#addAll} but overwrites previous variables.
Create an instance populated from a JSON object:
null
are conservedJsonArray
is converted to List
JsonObject
is converted to Map
Note that nested JSON elements are converted to a string, so { "user": { "first_name": "John", "last_name": "Doe", "address" : { "city": "Paris", etc... } } } flattens the JSON "address" to the string "{"city":"Paris",etc...}".
Generated using TypeDoc
Holds a set of name/value pairs where each value can be a
String
or aList
or aMap
.