6364656667686970
public static String toJSON(Object instance) { return toJSON( JavaTree.toEntityTree(instance) ); } public static Object fromJSON(String json) throws IOException { EntityTree tree = toTree(json); return JavaTree.toObject(tree); }