public interface DfPropertyAccessor
| 修飾子とタイプ | メソッドと説明 |
|---|---|
Class<?> |
getGenericType()
Get the (first) generic type of the property type if it exists.
|
String |
getPropertyName()
Get the name of the property.
|
Class<?> |
getPropertyType()
Get the type of the property.
|
Object |
getValue(Object target) |
boolean |
isReadable()
Is the property readable?
|
boolean |
isWritable()
Is the property writable?
|
void |
setValue(Object target,
Object value) |
String getPropertyName()
Class<?> getPropertyType()
Class<?> getGenericType()
Object getValue(Object target)
target - The target instance. (NullAllowed)DfBeanIllegalPropertyException - When the property of bean is illegal to get value.void setValue(Object target, Object value)
target - The target instance. (NullAllowed)value - The value of the property. (NullAllowed)DfBeanIllegalPropertyException - When the property of bean is illegal to set value.boolean isReadable()
boolean isWritable()
Copyright © 2014–2015 The DBFlute Project. All rights reserved.