com.alibaba.fastjson2.reader.FieldReaderDoubleValueField 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
The newest version!
package com.alibaba.fastjson2.reader;
import com.alibaba.fastjson2.JSONException;
import com.alibaba.fastjson2.JSONReader;
import com.alibaba.fastjson2.util.TypeUtils;
import java.lang.reflect.Field;
final class FieldReaderDoubleValueField
extends FieldReader {
FieldReaderDoubleValueField(String fieldName, Class fieldType, int ordinal, long features, String format, Double defaultValue, Field field) {
super(fieldName, fieldType, fieldType, ordinal, features, format, null, defaultValue, null, field);
}
@Override
public void readFieldValue(JSONReader jsonReader, T object) {
double fieldValue = jsonReader.readDoubleValue();
try {
field.setDouble(object, fieldValue);
} catch (Exception e) {
throw new JSONException(jsonReader.info("set " + fieldName + " error"), e);
}
}
@Override
public Object readFieldValue(JSONReader jsonReader) {
return jsonReader.readDoubleValue();
}
@Override
public void accept(T object, Object value) {
double doubleValue = TypeUtils.toDoubleValue(value);
try {
field.set(object, doubleValue);
} catch (Exception e) {
throw new JSONException("set " + fieldName + " error", e);
}
}
}