Package org.hibernate.bytecode.spi
Interface ReflectionOptimizer.AccessOptimizer
- Enclosing interface:
- ReflectionOptimizer
public static interface ReflectionOptimizer.AccessOptimizer
Represents optimized entity property access.
-
Method Summary
Modifier and TypeMethodDescriptionString[]
Get the name of all properties.Object[]
getPropertyValues
(Object object) Get the value of all properties from the given entityvoid
setPropertyValues
(Object object, Object[] values) Set all property values into an entity instance.
-
Method Details
-
getPropertyNames
String[] getPropertyNames()Get the name of all properties. -
getPropertyValues
Get the value of all properties from the given entity -
setPropertyValues
Set all property values into an entity instance.
-