com.alibaba.fastjson.parser.ObjectDeserializer 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
package com.alibaba.fastjson.parser;
import java.lang.reflect.Type;
public interface ObjectDeserializer {
@Deprecated
T deserialze(DefaultJSONParser parser, Type type, Object fieldName);
@Deprecated
default int getFastMatchToken() {
return 0;
}
}