Creates a new JsonObjectBuilder for building JSON objects.
Example:
var obj = JsonValue.object ()
.put ("name", JsonValue.ofString ("Alice"))
.put ("age", JsonValue.ofInt (30))
.build ();
|
a new object builder. |