public class JodaCodec extends Object implements ObjectSerializer, ContextObjectSerializer, ObjectDeserializer
Constructor and Description |
---|
JodaCodec() |
Modifier and Type | Method and Description |
---|---|
<T> T |
deserialze(DefaultJSONParser parser,
Type type,
Object fieldName)
fastjson invokes this call-back method during deserialization when it encounters a field of the
specified type.
|
<T> T |
deserialze(DefaultJSONParser parser,
Type type,
Object fieldName,
String format,
int feature) |
int |
getFastMatchToken() |
void |
write(JSONSerializer serializer,
Object object,
BeanContext context) |
void |
write(JSONSerializer serializer,
Object object,
Object fieldName,
Type fieldType,
int features)
fastjson invokes this call-back method during serialization when it encounters a field of the
specified type.
|
public static final JodaCodec instance
public <T> T deserialze(DefaultJSONParser parser, Type type, Object fieldName)
ObjectDeserializer
In the implementation of this call-back method, you should consider invoking
JSON.parseObject(String, Type, Feature[])
method to create objects
for any non-trivial field of the returned object.
deserialze
in interface ObjectDeserializer
parser
- context DefaultJSONParser being deserializedtype
- The type of the Object to deserialize tofieldName
- parent object field nameT
public <T> T deserialze(DefaultJSONParser parser, Type type, Object fieldName, String format, int feature)
public int getFastMatchToken()
getFastMatchToken
in interface ObjectDeserializer
public void write(JSONSerializer serializer, Object object, Object fieldName, Type fieldType, int features) throws IOException
ObjectSerializer
write
in interface ObjectSerializer
object
- src the object that needs to be converted to Json.fieldName
- parent object field namefieldType
- parent object field typefeatures
- parent object field serializer featuresIOException
public void write(JSONSerializer serializer, Object object, BeanContext context) throws IOException
write
in interface ContextObjectSerializer
IOException
Copyright © 2012–2022 Alibaba Group. All rights reserved.