Create a new JsonInput object to traverse the JSON string supplied the specified Reader. NOTE : The JsonInput object returned by this method uses the PropertySetting#BY_NAME BY_NAME strategy to assign values to properties objects it deserializes. @param fro
(Reader from)
| 219 | * @throws UncheckedIOException if an I/O exception occurs |
| 220 | */ |
| 221 | public JsonInput newInput(Reader from) throws UncheckedIOException { |
| 222 | return new JsonInput(from, fromJson, PropertySetting.BY_NAME); |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Create a new {@code JsonOutput} object to produce a serialized JSON string in the specified |
no outgoing calls
no test coverage detected