Class FieldInvoker

java.lang.Object
org.miaixz.bus.core.lang.reflect.field.FieldInvoker
All Implemented Interfaces:
Invoker

public class FieldInvoker extends Object implements Invoker
字段调用器 通过反射读取或赋值字段 读取字段值:

 FieldInvoker.of(Field).invoke(object);
 

赋值字段值:


 FieldInvoker.of(Field).invoke(object, value);
 
Since:
Java 17+
Author:
Kimi Liu