com.alibaba.fastjson2.writer.ObjectWriterException 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.writer;
import com.alibaba.fastjson2.JSONWriter;
import java.lang.reflect.Type;
import java.util.List;
public class ObjectWriterException
extends ObjectWriterAdapter {
public ObjectWriterException(Class objectType, long features, List fieldWriters) {
super(objectType, null, null, features, fieldWriters);
}
@Override
public void writeJSONB(JSONWriter jsonWriter, Object object, Object fieldName, Type fieldType, long features) {
writeClassInfo(jsonWriter);
int size = fieldWriters.size();
jsonWriter.startObject();
for (int i = 0; i < size; ++i) {
FieldWriter fw = fieldWriters.get(i);
fw.write(jsonWriter, object);
}
jsonWriter.endObject();
}
@Override
public void write(JSONWriter jsonWriter, Object object, Object fieldName, Type fieldType, long features) {
if (jsonWriter.jsonb) {
writeJSONB(jsonWriter, object, fieldName, fieldType, features);
return;
}
if (hasFilter(jsonWriter)) {
writeWithFilter(jsonWriter, object);
return;
}
jsonWriter.startObject();
if ((jsonWriter.getFeatures(features)
& (JSONWriter.Feature.WriteClassName.mask | JSONWriter.Feature.WriteThrowableClassName.mask)) != 0
) {
writeTypeInfo(jsonWriter);
}
for (FieldWriter fieldWriter : fieldWriters) {
fieldWriter.write(jsonWriter, object);
}
jsonWriter.endObject();
}
}