-
public interface Deserializer<P extends Object, R extends Object>The Deserializer<P, R> generic interface. Should be implemented by any custom deserializer.
FOR INTERNAL USAGE ONLY. THIS INTERFACE CONTENT MAY CHANGE WITHOUT NOTICE.
-
-
Method Summary
Modifier and Type Method Description abstract Rdeserialize(P model)Deserializes the data from the given payload type into given output type. -
-
Method Detail
-
deserialize
abstract R deserialize(P model)
Deserializes the data from the given payload type into given output type.
-
-
-
-