com.alibaba.fastjson2.reader.ObjectReaderPrimitive Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastjson2 Show documentation
Show all versions of fastjson2 Show documentation
Fastjson is a JSON processor (JSON parser + JSON generator) written in Java
package com.alibaba.fastjson2.reader;
import com.alibaba.fastjson2.JSONException;
import com.alibaba.fastjson2.JSONReader;
import java.lang.reflect.Type;
abstract class ObjectReaderPrimitive
implements ObjectReader {
protected final Class objectClass;
public ObjectReaderPrimitive(Class objectClass) {
this.objectClass = objectClass;
}
@Override
public Class getObjectClass() {
return objectClass;
}
@Override
public T createInstance(long features) {
throw new JSONException("createInstance not supported " + objectClass.getName());
}
@Override
public abstract T readJSONBObject(JSONReader jsonReader, Type fieldType, Object fieldName, long features);
}