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

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

Introduction

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

The text is from its open source code.

Subclass

org.springframework.beans.AbstractPropertyAccessor has subclasses.
Click this link to see all its subclasses.

Method

ClassgetPropertyType(String propertyPath)
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)
Actually get the value of a property.
booleanisReadableProperty(String propertyName)
Determine whether the specified property is readable.
booleanisWritableProperty(String propertyName)
Determine whether the specified property is writable.
voidregisterCustomEditor(Class requiredType, PropertyEditor propertyEditor)
voidregisterCustomEditor(@Nullable Class requiredType, @Nullable String propertyPath, PropertyEditor propertyEditor)
voidsetAutoGrowNestedPaths(boolean autoGrowNestedPaths)
voidsetConversionService(@Nullable ConversionService conversionService)
Specify a Spring 3.0 ConversionService to use for converting property values, as an alternative to JavaBeans PropertyEditors.
voidsetPropertyValue(String propertyName, @Nullable Object value)
Actually set a property value.
voidsetPropertyValue(PropertyValue pv)
voidsetPropertyValues(Map map)
voidsetPropertyValues(PropertyValues pvs)
voidsetPropertyValues(PropertyValues pvs, boolean ignoreUnknown)
voiduseConfigValueEditors()
Activate config value editors which are only intended for configuration purposes, such as org.springframework.beans.propertyeditors.StringArrayPropertyEditor .