com.alibaba.fastjson2.writer.FieldWriterInt32Func 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.function.Function;
import java.lang.reflect.Method;
final class FieldWriterInt32Func
extends FieldWriterInt32 {
final Function function;
protected FieldWriterInt32Func(
String fieldName,
int ordinal,
long features,
String format,
String label,
Method method,
Function function
) {
super(fieldName, ordinal, features, format, label, Integer.class, Integer.class, null, method);
this.function = function;
}
@Override
public Object getFieldValue(T object) {
return function.apply(object);
}
}