public interface JsonSerializationContext
JsonSerializer.serialize(Object, Type, JsonSerializationContext)
method.Modifier and Type | Method | Description |
---|---|---|
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.JsonElement
s 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.JsonElement
s corresponding to the serialized form of src
.Copyright © 2018. All rights reserved.