[Expand]
Inherited Methods |
From class
org.springframework.beans.AbstractPropertyAccessor
|
From class
org.springframework.beans.PropertyEditorRegistrySupport
void
|
copyCustomEditorsTo(PropertyEditorRegistry target, String nestedProperty)
Copy the custom editors registered in this instance to the given target registry.
|
void
|
copyDefaultEditorsTo(PropertyEditorRegistrySupport target)
Copy the default editors registered in this instance to the given target registry.
|
PropertyEditor
|
findCustomEditor(Class requiredType, String propertyPath)
Find a custom property editor for the given type and property.
|
ConversionService
|
getConversionService()
Return the associated ConversionService, if any.
|
PropertyEditor
|
getDefaultEditor(Class requiredType)
Retrieve the default editor for the given property type, if any.
|
Class
|
getPropertyType(String propertyPath)
Determine the property type for the given property path.
|
Class
|
guessPropertyTypeFromEditors(String propertyName)
Guess the property type of the specified property from the registered
custom editors (provided that they were registered for a specific type).
|
boolean
|
hasCustomEditorForElement(Class elementType, String propertyPath)
Determine whether this registry contains a custom editor
for the specified array/collection element.
|
boolean
|
isSharedEditor(PropertyEditor propertyEditor)
Check whether the given editor instance is a shared editor, that is,
whether the given editor instance might be used concurrently.
|
void
|
overrideDefaultEditor(Class requiredType, PropertyEditor propertyEditor)
Override the default editor for the specified type with the given property editor.
|
void
|
registerCustomEditor(Class requiredType, String propertyPath, PropertyEditor propertyEditor)
Register the given custom property editor for the given type and
property, or for all properties of the given type.
|
void
|
registerCustomEditor(Class requiredType, PropertyEditor propertyEditor)
Register the given custom property editor for all properties of the given type.
|
void
|
registerDefaultEditors()
Activate the default editors for this registry instance,
allowing for lazily registering default editors when needed.
|
void
|
registerSharedEditor(Class requiredType, PropertyEditor propertyEditor)
This method is deprecated.
as of Spring 3.0, in favor of PropertyEditorRegistrars or ConversionService usage
|
void
|
setConversionService(ConversionService conversionService)
Specify a Spring 3.0 ConversionService to use for converting
property values, as an alternative to JavaBeans PropertyEditors.
|
void
|
useConfigValueEditors()
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|
From interface
org.springframework.beans.ConfigurablePropertyAccessor
abstract
ConversionService
|
getConversionService()
Return the associated ConversionService, if any.
|
abstract
boolean
|
isExtractOldValueForEditor()
Return whether to extract the old property value when applying a
property editor to a new value for a property.
|
abstract
void
|
setConversionService(ConversionService conversionService)
Specify a Spring 3.0 ConversionService to use for converting
property values, as an alternative to JavaBeans PropertyEditors.
|
abstract
void
|
setExtractOldValueForEditor(boolean extractOldValueForEditor)
Set whether to extract the old property value when applying a
property editor to a new value for a property.
|
|
From interface
org.springframework.beans.PropertyAccessor
|
From interface
org.springframework.beans.PropertyEditorRegistry
|
From interface
org.springframework.beans.TypeConverter
|