接口 ReflectionOptimizer.AccessOptimizer
-
- 所有已知实现类:
AccessOptimizerAdapter
- 封闭接口:
- ReflectionOptimizer
public static interface ReflectionOptimizer.AccessOptimizerRepresents optimized entity property access.- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 String[]getPropertyNames()Get the name of all properties.Object[]getPropertyValues(Object object)Get the value of all properties from the given entityvoidsetPropertyValues(Object object, Object[] values)Set all property values into an entity instance.
-
-
-
方法详细资料
-
getPropertyNames
String[] getPropertyNames()
Get the name of all properties.- 返回:
- The name of all properties.
-
getPropertyValues
Object[] getPropertyValues(Object object)
Get the value of all properties from the given entity- 参数:
object- The entity from which to extract values.- 返回:
- The values.
-
-