Skip to content

0.9.2

Compare
Choose a tag to compare
@ralfstx ralfstx released this 30 Dec 22:44
· 97 commits to master since this release
  • Switched to MIT License
  • Added typed getter methods to JsonObject. These methods accept a default value that is returned if the member does not exist, e.g.
String name = jsonObject.getString("name", "unknown");
int size = jsonObject.getString("size", -1);