shade.com.alibaba.fastjson2.writer.FieldWriterFloatFunc Maven / Gradle / Ivy
package com.alibaba.fastjson2.writer;
import com.alibaba.fastjson2.JSONWriter;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.function.Function;
final class FieldWriterFloatFunc
extends FieldWriter {
final Function function;
FieldWriterFloatFunc(
String fieldName,
int ordinal,
long features,
String format,
String label,
Field field,
Method method,
Function function
) {
super(fieldName, ordinal, features, format, label, Float.class, Float.class, field, method);
this.function = function;
}
@Override
public Object getFieldValue(T object) {
return function.apply(object);
}
@Override
public void writeValue(JSONWriter jsonWriter, T object) {
Float value = function.apply(object);
if (value == null) {
jsonWriter.writeNumberNull();
} else {
float floatValue = value;
if (decimalFormat != null) {
jsonWriter.writeFloat(floatValue, decimalFormat);
} else {
jsonWriter.writeFloat(floatValue);
}
}
}
@Override
public boolean write(JSONWriter jsonWriter, T object) {
Float value;
try {
value = function.apply(object);
} catch (RuntimeException error) {
if (jsonWriter.isIgnoreErrorGetter()) {
return false;
}
throw error;
}
if (value == null) {
long features = jsonWriter.getFeatures(this.features);
if ((features & JSONWriter.Feature.WriteNulls.mask) != 0
&& (features & JSONWriter.Feature.NotWriteDefaultValue.mask) == 0
) {
writeFieldName(jsonWriter);
jsonWriter.writeNumberNull();
return true;
}
return false;
}
writeFieldName(jsonWriter);
float floatValue = value;
if (decimalFormat != null) {
jsonWriter.writeFloat(floatValue, decimalFormat);
} else {
jsonWriter.writeFloat(floatValue);
}
return true;
}
@Override
public Function getFunction() {
return function;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy