public interface DynamicProperty
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
get(java.lang.Object object)
Call the getter on the given object
|
java.lang.String |
getPropertyName() |
boolean |
isPropertyMatch(java.lang.String propertyName)
Whether the target class contains the specified property
|
void |
set(java.lang.Object object,
java.lang.Object newValue)
Call the setter on the given object
|
boolean isPropertyMatch(java.lang.String propertyName)
propertyName - The name of the propertyjava.lang.Object get(java.lang.Object object)
object - The target objectvoid set(java.lang.Object object,
java.lang.Object newValue)
object - The target objectnewValue - The new value of the propertyjava.lang.String getPropertyName()