Uses of Interface
org.springframework.beans.PropertyEditorRegistry
Packages that use 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
Subinterfaces of PropertyEditorRegistry in org.springframework.beansModifier and TypeInterfaceDescriptioninterfaceThe central interface of Spring's low-level JavaBeans infrastructure.interfaceInterface that encapsulates configuration methods for a PropertyAccessor.Classes in org.springframework.beans that implement PropertyEditorRegistryModifier and TypeClassDescriptionclassA basicConfigurablePropertyAccessorthat provides the necessary infrastructure for all typical use cases.classAbstract implementation of thePropertyAccessorinterface.classDefaultBeanWrapperimplementation that should be sufficient for all typical use cases.classConfigurablePropertyAccessorimplementation that directly accesses instance fields.classBase implementation of thePropertyEditorRegistryinterface.classSimple implementation of theTypeConverterinterface that does not operate on a specific target object.classBase implementation of theTypeConverterinterface, using a package-private delegate.Methods in org.springframework.beans with parameters of type PropertyEditorRegistryModifier and TypeMethodDescriptionprotected voidPropertyEditorRegistrySupport.copyCustomEditorsTo(PropertyEditorRegistry target, String nestedProperty) Copy the custom editors registered in this instance to the given target registry.voidPropertyEditorRegistrar.registerCustomEditors(PropertyEditorRegistry registry) Register customPropertyEditorswith the givenPropertyEditorRegistry. -
Uses of PropertyEditorRegistry in org.springframework.beans.factory.config
Methods in org.springframework.beans.factory.config with parameters of type PropertyEditorRegistryModifier and TypeMethodDescriptionvoidConfigurableBeanFactory.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
Methods in org.springframework.beans.factory.support with parameters of type PropertyEditorRegistryModifier and TypeMethodDescriptionvoidAbstractBeanFactory.copyRegisteredEditorsTo(PropertyEditorRegistry registry) protected voidAbstractBeanFactory.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
Methods in org.springframework.beans.support with parameters of type PropertyEditorRegistryModifier and TypeMethodDescriptionvoidResourceEditorRegistrar.registerCustomEditors(PropertyEditorRegistry registry) Populate the givenregistrywith the following resource editors: ResourceEditor, InputStreamEditor, InputSourceEditor, FileEditor, URLEditor, URIEditor, ClassEditor, ClassArrayEditor. -
Uses of PropertyEditorRegistry in org.springframework.validation
Classes in org.springframework.validation that implement PropertyEditorRegistryModifier and TypeClassDescriptionclassBinder that allows applying property values to a target object via constructor and setter injection, and also supports validation and binding result analysis.Methods in org.springframework.validation that return PropertyEditorRegistryModifier and TypeMethodDescriptionAbstractBindingResult.getPropertyEditorRegistry()This implementation returnsnull.AbstractPropertyBindingResult.getPropertyEditorRegistry()Returns the underlying PropertyAccessor.BindException.getPropertyEditorRegistry()BindingResult.getPropertyEditorRegistry()Return the underlying PropertyEditorRegistry.protected PropertyEditorRegistryDataBinder.getPropertyEditorRegistry()Return the underlying TypeConverter of this binder's BindingResult. -
Uses of PropertyEditorRegistry in org.springframework.web.bind
Classes in org.springframework.web.bind that implement PropertyEditorRegistryModifier and TypeClassDescriptionclassSpecialDataBinderto perform data binding from servlet request parameters to JavaBeans, including support for multipart files.classSpecialDataBinderfor data binding from web request parameters to JavaBean objects. -
Uses of PropertyEditorRegistry in org.springframework.web.bind.support
Classes in org.springframework.web.bind.support that implement PropertyEditorRegistryModifier and TypeClassDescriptionclassSpecializedDataBinderto perform data binding from URL query parameters or form data in the request data to Java objects.classSpecialDataBinderto perform data binding from web request parameters to JavaBeans, including support for multipart files.Methods in org.springframework.web.bind.support that return PropertyEditorRegistry -
Uses of PropertyEditorRegistry in org.springframework.web.servlet.mvc.method.annotation
Classes in org.springframework.web.servlet.mvc.method.annotation that implement PropertyEditorRegistryModifier and TypeClassDescriptionclassSubclass ofServletRequestDataBinderthat adds URI template variables to the values used for data binding.