com.alibaba.fastjson.parser.deserializer.ContextObjectDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastjson Show documentation
Show all versions of fastjson Show documentation
Fastjson is a JSON processor (JSON parser + JSON generator) written in Java, majinju定制版
The newest version!
package com.alibaba.fastjson.parser.deserializer;
import java.lang.reflect.Type;
import com.alibaba.fastjson.parser.DefaultJSONParser;
public abstract class ContextObjectDeserializer implements ObjectDeserializer {
public T deserialze(DefaultJSONParser parser, Type type, Object fieldName) {
return deserialze(parser, type, fieldName, null, 0);
}
public abstract T deserialze(DefaultJSONParser parser, Type type, Object fieldName, String format, int features);
}