Package com.google.gson.interceptors
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.-
Method Summary
Modifier and TypeMethodDescriptionvoid
postDeserialize
(T object) This method is called by Gson after the object has been deserialized from Json.
-
Method Details
-
postDeserialize
This method is called by Gson after the object has been deserialized from Json.
-