JsonObject and JsonArray
Generic JSON objects
JsonObject jo = JsonParser.create().parseAsJsonObject("{ ... }");
Integer i = jo.getInteger("key");
JsonObject child = jo.getJsonObject("child");
JsonArray ja = jo.getJsonArray("arr");
Double d = ja.getDouble(ndx);Serialization
Binary values
Last updated