Java org.springframework.beans PropertyAccessor fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.beans PropertyAccessor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.beans PropertyAccessor.

The text is from its open source code.

Field

StringNESTED_PROPERTY_SEPARATOR
Path separator for nested properties.
StringPROPERTY_KEY_PREFIX
Marker that indicates the start of a property key for an indexed or mapped property like "person.addresses[0]".
charPROPERTY_KEY_PREFIX_CHAR
Marker that indicates the start of a property key for an indexed or mapped property like "person.addresses[0]".
StringPROPERTY_KEY_SUFFIX
Marker that indicates the end of a property key for an indexed or mapped property like "person.addresses[0]".
charPROPERTY_KEY_SUFFIX_CHAR
Marker that indicates the end of a property key for an indexed or mapped property like "person.addresses[0]".

Method

ClassgetPropertyType(String propertyName)
Determine the property type for the specified property, either checking the property descriptor or checking the value in case of an indexed or mapped element.
TypeDescriptorgetPropertyTypeDescriptor(String propertyName)
Return a type descriptor for the specified property: preferably from the read method, falling back to the write method.
ObjectgetPropertyValue(String propertyName)
Get the current value of the specified property.
booleanisReadableProperty(String propertyName)
Determine whether the specified property is readable.
booleanisWritableProperty(String propertyName)
Determine whether the specified property is writable.
voidsetPropertyValue(String propertyName, @Nullable Object value)
Set the specified value as current property value.