com.alibaba.fastjson2.writer.ObjectWriterImplInt8 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;
final class ObjectWriterImplInt8
extends ObjectWriterPrimitiveImpl {
static final ObjectWriterImplInt8 INSTANCE = new ObjectWriterImplInt8();
@Override
public void writeJSONB(JSONWriter jsonWriter, Object object, Object fieldName, Type fieldType, long features) {
if (object == null) {
jsonWriter.writeNumberNull();
return;
}
byte byteValue = ((Byte) object).byteValue();
jsonWriter.writeInt8(byteValue);
}
@Override
public void write(JSONWriter jsonWriter, Object object, Object fieldName, Type fieldType, long features) {
if (object == null) {
jsonWriter.writeNumberNull();
return;
}
jsonWriter.writeInt32(((Number) object).intValue());
if (((jsonWriter.getFeatures() | features) & JSONWriter.Feature.WriteClassName.mask) != 0
&& fieldType != Byte.class && fieldType != byte.class) {
jsonWriter.writeRaw('B');
}
}
}