I was trying to use the Java EE 7 JsonBuilder and have been having trouble understanding the config parameter for createBuilderFactory. Yes, one can leave it blank or null, but what else can one do?
JsonBuilderFactory factory = Json.createBuilderFactory(config);
JsonObject value = factory.createObjectBuilder()
.add("firstName", "John")
.add("lastName", "Smith")
.add("age", 25).build();
What can one do with config? Spacing around colons or commas? Line breaks for each array? I don't know how to look at the source code, and it does not appear to be documented at the Java EE page for json (http://docs.oracle.com/javaee/7/api/index.html?javax/json/Json.html)