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 Detail

      • postDeserialize

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