Interface JsonPostDeserializer<T>


public interface JsonPostDeserializer<T>
This interface is implemented by a class that wishes to inspect or modify an object after it has been deserialized. You must define a no-args constructor or register an InstanceCreator for such a class.
Author:
Inderjeet Singh
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    This method is called by Gson after the object has been deserialized from Json.
  • Method Details

    • postDeserialize

      void postDeserialize(T object)
      This method is called by Gson after the object has been deserialized from Json.