![JAR search and dependency download from the Maven repository](/logo.png)
com.alibaba.fastjson2.writer.FieldWriterInt8Method 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.JSONException;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
final class FieldWriterInt8Method
extends FieldWriterInt8 {
protected FieldWriterInt8Method(
String fieldName,
int ordinal,
long features,
String format,
String label,
Method method,
Class fieldClass
) {
super(fieldName, ordinal, features, format, label, fieldClass, null, method);
}
@Override
public Object getFieldValue(Object object) {
try {
return method.invoke(object);
} catch (IllegalArgumentException | IllegalAccessException | InvocationTargetException e) {
throw new JSONException("invoke getter method error, " + fieldName, e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy