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 anInstanceCreatorfor such a class.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpostDeserialize(T object)This method is called by Gson after the object has been deserialized from Json.
-
-
-
Method Detail
-
postDeserialize
void postDeserialize(T object)
This method is called by Gson after the object has been deserialized from Json.
-
-