Package 

Interface Deserializer


  • 
    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 R deserialize(P model) Deserializes the data from the given payload type into given output type.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • deserialize

         abstract R deserialize(P model)

        Deserializes the data from the given payload type into given output type.