|
spring-core | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.springframework.core.convert.Property
public final class Property
A description of a JavaBeans Property that allows us to avoid a dependency on
java.beans.PropertyDescriptor
. The java.beans
package
is not available in a number of environments (e.g. Android, Java ME), so this is
desirable for portability of Spring's core conversion facility.
Used to build a TypeDescriptor from a property location. The built TypeDescriptor can then be used to convert from/to the property type.
TypeDescriptor.TypeDescriptor(Property)
,
TypeDescriptor.nested(Property, int)
Constructor Summary | |
---|---|
Property(java.lang.Class<?> objectType,
java.lang.reflect.Method readMethod,
java.lang.reflect.Method writeMethod)
|
Method Summary | |
---|---|
java.lang.String |
getName()
The name of the property: e.g. |
java.lang.Class<?> |
getObjectType()
The object declaring this property, either directly or in a superclass the object extends. |
java.lang.reflect.Method |
getReadMethod()
The property getter method: e.g. |
java.lang.Class<?> |
getType()
The property type: e.g. |
java.lang.reflect.Method |
getWriteMethod()
The property setter method: e.g. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Property(java.lang.Class<?> objectType, java.lang.reflect.Method readMethod, java.lang.reflect.Method writeMethod)
Method Detail |
---|
public java.lang.Class<?> getObjectType()
public java.lang.String getName()
public java.lang.Class<?> getType()
java.lang.String
public java.lang.reflect.Method getReadMethod()
getFoo()
public java.lang.reflect.Method getWriteMethod()
setFoo(String)
|
spring-core | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |