![JAR search and dependency download from the Maven repository](/logo.png)
com.alibaba.fastjson2.writer.FieldWriterBigIntField 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.Field;
import java.math.BigInteger;
final class FieldWriterBigIntField
extends FieldWriter {
protected FieldWriterBigIntField(
String name,
int ordinal,
long features,
String format,
String label,
Field field
) {
super(name, ordinal, features, format, label, BigInteger.class, BigInteger.class, field, null);
}
@Override
public boolean write(JSONWriter jsonWriter, T object) {
BigInteger value = (BigInteger) getFieldValue(object);
if (value == null) {
long features = this.features | jsonWriter.getFeatures();
if ((features & JSONWriter.Feature.WriteNulls.mask) == 0) {
return false;
}
}
writeFieldName(jsonWriter);
jsonWriter.writeBigInt(value, features);
return true;
}
@Override
public void writeValue(JSONWriter jsonWriter, T object) {
BigInteger value = (BigInteger) getFieldValue(object);
jsonWriter.writeBigInt(value, features);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy