com.alibaba.fastjson2.writer.FieldWriterEnumFunc 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 java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.Type;
import java.util.function.Function;
final class FieldWriterEnumFunc
extends FieldWriterEnum {
final Function function;
FieldWriterEnumFunc(
String name,
int ordinal,
long features,
String format,
String label,
Type fieldType,
Class fieldClass,
Field field,
Method method,
Function function
) {
super(name, ordinal, features, format, label, fieldType, fieldClass, field, method);
this.function = function;
}
@Override
public Object getFieldValue(Object object) {
return function.apply(object);
}
@Override
public Function getFunction() {
return function;
}
}