ModelNode node = new ModelNode(); node.add("hello"); node.add("world"); String result = node.asString(); System.out.println(result);
[hello,world]
ModelNode node = new ModelNode(); node.get("name").set("John"); node.get("age").set(30); String result = node.asString(); System.out.println(result);
{"name" => "John", "age" => 30}The org.jboss.dmr library is part of the JBoss Application Server, which is an open-source Java EE-based application server.