public interface JsonObjectMapper
| Modifier and Type | Method and Description |
|---|---|
<T> T |
fromJson(String value,
Class<T> valueType)
Perform deserialization from JSON format string to the given type object as argument.
|
String |
toJson(Object value)
Perform serialization from object to JSON format string.
|
<T> T fromJson(String value, Class<T> valueType)
T - the type object to convertvalue - the JSON formatvalueType - the object type to convertCopyright © 2024. All rights reserved.