Uses of Interface
org.springframework.beans.PropertyEditorRegistry
Packages that use PropertyEditorRegistry Package Description org.springframework.beans This package contains interfaces and classes for manipulating Java beans.org.springframework.beans.factory.config SPI interfaces and configuration-related convenience classes for bean factories.org.springframework.beans.factory.support Classes supporting theorg.springframework.beans.factorypackage.org.springframework.beans.support Classes supporting the org.springframework.beans package, such as utility classes for sorting and holding lists of beans.org.springframework.validation Provides data binding and validation functionality, for usage in business and/or UI layers.org.springframework.web.bind Provides web-specific data binding functionality.org.springframework.web.bind.support Support classes for web data binding.org.springframework.web.servlet.mvc.method.annotation MVC infrastructure for annotation-based handler method processing, building on theorg.springframework.web.method.annotationpackage.Uses of PropertyEditorRegistry in org.springframework.beans
Subinterfaces of PropertyEditorRegistry in org.springframework.beans Modifier and Type Interface Description interfaceBeanWrapperThe central interface of Spring's low-level JavaBeans infrastructure.interfaceConfigurablePropertyAccessorInterface that encapsulates configuration methods for a PropertyAccessor.Classes in org.springframework.beans that implement PropertyEditorRegistry Modifier and Type Class Description classAbstractNestablePropertyAccessorA basicConfigurablePropertyAccessorthat provides the necessary infrastructure for all typical use cases.classAbstractPropertyAccessorAbstract implementation of thePropertyAccessorinterface.classBeanWrapperImplDefaultBeanWrapperimplementation that should be sufficient for all typical use cases.classDirectFieldAccessorConfigurablePropertyAccessorimplementation that directly accesses instance fields.classPropertyEditorRegistrySupportBase implementation of thePropertyEditorRegistryinterface.classSimpleTypeConverterSimple implementation of theTypeConverterinterface that does not operate on a specific target object.classTypeConverterSupportBase implementation of theTypeConverterinterface, using a package-private delegate.Methods in org.springframework.beans with parameters of type PropertyEditorRegistry Modifier and Type Method Description protected 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 PropertyEditorRegistry Modifier and Type Method Description voidConfigurableBeanFactory. 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 PropertyEditorRegistry Modifier and Type Method Description voidAbstractBeanFactory. 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 PropertyEditorRegistry Modifier and Type Method Description voidResourceEditorRegistrar. 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 PropertyEditorRegistry Modifier and Type Class Description classDataBinderBinder that allows for setting property values onto a target object, including support for validation and binding result analysis.Methods in org.springframework.validation that return PropertyEditorRegistry Modifier and Type Method Description PropertyEditorRegistryAbstractBindingResult. getPropertyEditorRegistry()This implementation returnsnull.PropertyEditorRegistryAbstractPropertyBindingResult. getPropertyEditorRegistry()Returns the underlying PropertyAccessor.PropertyEditorRegistryBindException. getPropertyEditorRegistry()PropertyEditorRegistryBindingResult. 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 PropertyEditorRegistry Modifier and Type Class Description classServletRequestDataBinderSpecialDataBinderto perform data binding from servlet request parameters to JavaBeans, including support for multipart files.classWebDataBinderSpecialDataBinderfor 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 PropertyEditorRegistry Modifier and Type Class Description classWebExchangeDataBinderSpecializedDataBinderto perform data binding from URL query params or form data in the request data to Java objects.classWebRequestDataBinderSpecialDataBinderto perform data binding from web request parameters to JavaBeans, including support for multipart files.Methods in org.springframework.web.bind.support that return PropertyEditorRegistry Modifier and Type Method Description PropertyEditorRegistryWebExchangeBindException. getPropertyEditorRegistry()Uses of PropertyEditorRegistry in org.springframework.web.servlet.mvc.method.annotation
Classes in org.springframework.web.servlet.mvc.method.annotation that implement PropertyEditorRegistry Modifier and Type Class Description classExtendedServletRequestDataBinderSubclass ofServletRequestDataBinderthat adds URI template variables to the values used for data binding.