Package org.mybatis.scripting.thymeleaf
Interface PropertyAccessor
- All Known Implementing Classes:
PropertyAccessor.BuiltIn
public interface PropertyAccessor
The interface for accessing a property.
If you want to customize a default
If you want to customize a default
PropertyAccessor
, you implements class of this interface and you need to
specify to a SqlGenerator
. - Version:
- 1.0.2
- Author:
- Kazuki Shimizu
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic enum
The built-in property accessors. -
Method Summary
Modifier and TypeMethodDescriptiongetPropertyNames
(Class<?> type) Get property names of specified type.Class
<?> getPropertyType
(Class<?> type, String name) Get a property type of specified property.getPropertyValue
(Object target, String name) Get a property value from specified target object.void
setPropertyValue
(Object target, String name, Object value) Set a property value to the specified target object.
-
Method Details
-
getPropertyNames
-
getPropertyType
-
getPropertyValue
-
setPropertyValue
-