public class EnumDeserializer extends Object implements ObjectDeserializer
Constructor and Description |
---|
EnumDeserializer(Class<?> enumClass) |
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.
|
Enum |
getEnumByHashCode(long hashCode) |
int |
getFastMatchToken() |
Enum<?> |
valueOf(int ordinal) |
public EnumDeserializer(Class<?> enumClass)
public Enum getEnumByHashCode(long hashCode)
public Enum<?> valueOf(int ordinal)
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 int getFastMatchToken()
getFastMatchToken
in interface ObjectDeserializer
Copyright © 2012–2022 Alibaba Group. All rights reserved.