-
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 anInstanceCreator
for such a class.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
postDeserialize(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.
-
-