Package com.grapecity.documents.excel
Interface IJsonSerializer
public interface IJsonSerializer
Represents a serializer/deserializer for custom type in from/to json.
-
Method Summary
-
Method Details
-
serialize
Serialize an Object to json string- Parameters:
value- The Object to serialize.- Returns:
- The JSON string representation of the Object.
-
deserialize
Deserialize json string to object.- Parameters:
json- The JSON string to deserialize.- Returns:
- The deserialized Object.
-