Deserialize the specified JSON string into an object of the specified type. NOTE : This method uses the PropertySetting#BY_NAME BY_NAME strategy to assign values to properties in the deserialized object. @param source serialized source as JSON string @param typeOfT data type for d
(String source, Type typeOfT)
| 151 | * @throws JsonException if an I/O exception is encountered |
| 152 | */ |
| 153 | public <T> T toType(String source, Type typeOfT) { |
| 154 | return toType(source, typeOfT, PropertySetting.BY_NAME); |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * Deserialize the specified JSON string into an object of the specified type. |