public interface JsonSerializationContext
JsonSerializer.serialize(Object, Type, JsonSerializationContext) method.| 限定符和类型 | 方法和说明 |
|---|---|
JsonElement |
serialize(Object src)
Invokes default serialization on the specified object.
|
JsonElement |
serialize(Object src,
Type typeOfSrc)
Invokes default serialization on the specified object passing the specific type information.
|
JsonElement serialize(Object src)
src - the object that needs to be serialized.JsonElements corresponding to the serialized form of src.JsonElement serialize(Object src, Type typeOfSrc)
JsonSerializer.serialize(Object, Type, JsonSerializationContext) method. Doing
so will result in an infinite loop since Gson will in-turn call the custom serializer again.src - the object that needs to be serialized.typeOfSrc - the actual genericized type of src object.JsonElements corresponding to the serialized form of src.