Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
8.1.3
-
None
-
None
Description
Currently you can convert to and from various languages using the following code:
Bean b = Json.DEFAULT.read(string, type);
String json = Json.DEFAULT.write(b);
This could be simplified further with the following method additions:
Bean b = Json.from(string, type);
String json = Json.to(b);