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)
| 226 | * @throws UncheckedIOException if an I/O exception occurs |
| 227 | */ |
| 228 | public JsonInput newInput(Reader from) throws UncheckedIOException { |
| 229 | return new JsonInput(from, fromJson, PropertySetting.BY_NAME); |
| 230 | } |
| 231 | |
| 232 | /** |
| 233 | * Create a new {@code JsonOutput} object to produce a serialized JSON string in the specified |
no outgoing calls
no test coverage detected