Package org.one.stone.soup.core.data

Examples of org.one.stone.soup.core.data.EntityTree


  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);
  }
View Full Code Here

TOP

Related Classes of org.one.stone.soup.core.data.EntityTree

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.