Context for deserialization that is passed to a custom deserializer during invocation of its JsonDeserializer#deserialize(JsonElement, Type, JsonDeserializationContext) method.
- 作者
- Inderjeet Singh
-
Joel Leitch
Invokes default deserialization on the specified object. It should never be invoked on the element received as a parameter of the JsonDeserializer#deserialize(JsonElement, Type, JsonDeserializationContext) method. Doing so will result in an infinite loop since Gson will in-turn call the custom deserializer again.
- 参数
-
| json | the parse tree. |
| typeOfT | type of the expected return value. |
| <T> | The type of the deserialized object. |
- 返回
- An object of type typeOfT.
- 异常
-
该接口的文档由以下文件生成: