
hydraql.shaded.fastjson2.writer.FieldWriterBigDecimalFunc Maven / Gradle / Ivy
package hydraql.shaded.fastjson2.writer;
import hydraql.shaded.fastjson2.JSONWriter;
import java.lang.reflect.Method;
import java.math.BigDecimal;
import java.util.function.Function;
final class FieldWriterBigDecimalFunc
extends FieldWriter {
final Function function;
protected FieldWriterBigDecimalFunc(
String fieldName,
int ordinal,
long features,
String format,
String label,
Method method,
Function function
) {
super(fieldName, ordinal, features, format, label, BigDecimal.class, BigDecimal.class, null, method);
this.function = function;
}
@Override
public Object getFieldValue(T object) {
return function.apply(object);
}
@Override
public void writeValue(JSONWriter jsonWriter, T object) {
BigDecimal value = function.apply(object);
jsonWriter.writeDecimal(value);
}
@Override
public boolean write(JSONWriter jsonWriter, T object) {
BigDecimal value;
try {
value = function.apply(object);
} catch (RuntimeException error) {
if (jsonWriter.isIgnoreErrorGetter()) {
return false;
}
throw error;
}
if (value == null) {
long features = this.features | jsonWriter.getFeatures();
if ((features & JSONWriter.Feature.WriteNulls.mask) == 0) {
return false;
}
}
writeFieldName(jsonWriter);
jsonWriter.writeDecimal(value);
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy