Uses of Interface
org.springframework.beans.PropertyEditorRegistry
Package
Description
This package contains interfaces and classes for manipulating Java beans.
SPI interfaces and configuration-related convenience classes for bean factories.
Classes supporting the
org.springframework.beans.factory
package.Classes supporting the org.springframework.beans package,
such as utility classes for sorting and holding lists of beans.
Provides data binding and validation functionality,
for usage in business and/or UI layers.
Provides web-specific data binding functionality.
Support classes for web data binding.
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation
package.-
Uses of PropertyEditorRegistry in org.springframework.beans
Modifier and TypeInterfaceDescriptioninterface
The central interface of Spring's low-level JavaBeans infrastructure.interface
Interface that encapsulates configuration methods for a PropertyAccessor.Modifier and TypeClassDescriptionclass
A basicConfigurablePropertyAccessor
that provides the necessary infrastructure for all typical use cases.class
Abstract implementation of thePropertyAccessor
interface.class
DefaultBeanWrapper
implementation that should be sufficient for all typical use cases.class
ConfigurablePropertyAccessor
implementation that directly accesses instance fields.class
Base implementation of thePropertyEditorRegistry
interface.class
Simple implementation of theTypeConverter
interface that does not operate on a specific target object.class
Base implementation of theTypeConverter
interface, using a package-private delegate.Modifier and TypeMethodDescriptionprotected void
PropertyEditorRegistrySupport.copyCustomEditorsTo
(PropertyEditorRegistry target, String nestedProperty) Copy the custom editors registered in this instance to the given target registry.void
PropertyEditorRegistrar.registerCustomEditors
(PropertyEditorRegistry registry) Register customPropertyEditors
with the givenPropertyEditorRegistry
. -
Uses of PropertyEditorRegistry in org.springframework.beans.factory.config
Modifier and TypeMethodDescriptionvoid
ConfigurableBeanFactory.copyRegisteredEditorsTo
(PropertyEditorRegistry registry) Initialize the given PropertyEditorRegistry with the custom editors that have been registered with this BeanFactory. -
Uses of PropertyEditorRegistry in org.springframework.beans.factory.support
Modifier and TypeMethodDescriptionvoid
AbstractBeanFactory.copyRegisteredEditorsTo
(PropertyEditorRegistry registry) protected void
AbstractBeanFactory.registerCustomEditors
(PropertyEditorRegistry registry) Initialize the given PropertyEditorRegistry with the custom editors that have been registered with this BeanFactory. -
Uses of PropertyEditorRegistry in org.springframework.beans.support
Modifier and TypeMethodDescriptionvoid
ResourceEditorRegistrar.registerCustomEditors
(PropertyEditorRegistry registry) Populate the givenregistry
with the following resource editors: ResourceEditor, InputStreamEditor, InputSourceEditor, FileEditor, URLEditor, URIEditor, ClassEditor, ClassArrayEditor. -
Uses of PropertyEditorRegistry in org.springframework.validation
Modifier and TypeClassDescriptionclass
Binder that allows applying property values to a target object via constructor and setter injection, and also supports validation and binding result analysis.Modifier and TypeMethodDescriptionAbstractBindingResult.getPropertyEditorRegistry()
This implementation returnsnull
.AbstractPropertyBindingResult.getPropertyEditorRegistry()
Returns the underlying PropertyAccessor.BindException.getPropertyEditorRegistry()
BindingResult.getPropertyEditorRegistry()
Return the underlying PropertyEditorRegistry.protected PropertyEditorRegistry
DataBinder.getPropertyEditorRegistry()
Return the underlying TypeConverter of this binder's BindingResult. -
Uses of PropertyEditorRegistry in org.springframework.web.bind
Modifier and TypeClassDescriptionclass
SpecialDataBinder
to perform data binding from servlet request parameters to JavaBeans, including support for multipart files.class
SpecialDataBinder
for data binding from web request parameters to JavaBean objects. -
Uses of PropertyEditorRegistry in org.springframework.web.bind.support
Modifier and TypeClassDescriptionclass
SpecializedDataBinder
to perform data binding from URL query parameters or form data in the request data to Java objects.class
SpecialDataBinder
to perform data binding from web request parameters to JavaBeans, including support for multipart files. -
Uses of PropertyEditorRegistry in org.springframework.web.servlet.mvc.method.annotation
Modifier and TypeClassDescriptionclass
Subclass ofServletRequestDataBinder
that adds URI template variables to the values used for data binding.