public class TimeDeserializer extends Object implements ObjectDeserializer
| Modifier and Type | Field and Description |
|---|---|
static TimeDeserializer |
instance |
| Constructor and Description |
|---|
TimeDeserializer() |
| Modifier and Type | Method and Description |
|---|---|
<T> T |
deserialze(DefaultJSONParser parser,
Type clazz,
Object fieldName)
fastjson invokes this call-back method during deserialization when it encounters a field of the
specified type.
|
int |
getFastMatchToken() |
public static final TimeDeserializer instance
public <T> T deserialze(DefaultJSONParser parser, Type clazz, Object fieldName)
ObjectDeserializerIn 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 ObjectDeserializerparser - context DefaultJSONParser being deserializedclazz - The type of the Object to deserialize tofieldName - parent object field nameTpublic int getFastMatchToken()
getFastMatchToken in interface ObjectDeserializerCopyright © 2012–2022 Alibaba Group. All rights reserved.