Uses of Interface
org.springframework.beans.TypeConverter
Packages that use TypeConverter
Package
Description
This package contains interfaces and classes for manipulating Java beans.
Support package for annotation-driven bean configuration.
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 the core JDBC framework, based on JdbcTemplate
and its associated callback interfaces and helper objects.
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 TypeConverter in org.springframework.beans
Subinterfaces of TypeConverter 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 TypeConverterModifier 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.classSimple implementation of theTypeConverterinterface that does not operate on a specific target object.classBase implementation of theTypeConverterinterface, using a package-private delegate. -
Uses of TypeConverter in org.springframework.beans.factory.annotation
Methods in org.springframework.beans.factory.annotation with parameters of type TypeConverterModifier and TypeMethodDescriptionprotected booleanQualifierAnnotationAutowireCandidateResolver.checkQualifier(BeanDefinitionHolder bdHolder, Annotation annotation, TypeConverter typeConverter) Match the given qualifier annotation against the candidate bean definition. -
Uses of TypeConverter in org.springframework.beans.factory.config
Methods in org.springframework.beans.factory.config that return TypeConverterModifier and TypeMethodDescriptionprotected TypeConverterAbstractFactoryBean.getBeanTypeConverter()Obtain a bean type converter from the BeanFactory that this bean runs in.protected TypeConverterMethodInvokingBean.getDefaultTypeConverter()Obtain the TypeConverter from the BeanFactory that this bean runs in, if possible.ConfigurableBeanFactory.getTypeConverter()Obtain a type converter as used by this BeanFactory.Methods in org.springframework.beans.factory.config with parameters of type TypeConverterModifier and TypeMethodDescriptionAutowireCapableBeanFactory.resolveDependency(DependencyDescriptor descriptor, String requestingBeanName, Set<String> autowiredBeanNames, TypeConverter typeConverter) Resolve the specified dependency against the beans defined in this factory.voidConfigurableBeanFactory.setTypeConverter(TypeConverter typeConverter) Set a custom type converter that this BeanFactory should use for converting bean property values, constructor argument values, etc. -
Uses of TypeConverter in org.springframework.beans.factory.support
Methods in org.springframework.beans.factory.support that return TypeConverterModifier and TypeMethodDescriptionprotected TypeConverterAbstractBeanFactory.getCustomTypeConverter()Return the custom TypeConverter to use, if any.AbstractBeanFactory.getTypeConverter()Methods in org.springframework.beans.factory.support with parameters of type TypeConverterModifier and TypeMethodDescriptionDefaultListableBeanFactory.doResolveDependency(DependencyDescriptor descriptor, String beanName, Set<String> autowiredBeanNames, TypeConverter typeConverter) DefaultListableBeanFactory.resolveDependency(DependencyDescriptor descriptor, String requestingBeanName, Set<String> autowiredBeanNames, TypeConverter typeConverter) voidAbstractBeanFactory.setTypeConverter(TypeConverter typeConverter) Constructors in org.springframework.beans.factory.support with parameters of type TypeConverterModifierConstructorDescriptionBeanDefinitionValueResolver(AbstractAutowireCapableBeanFactory beanFactory, String beanName, BeanDefinition beanDefinition, TypeConverter typeConverter) Create a BeanDefinitionValueResolver for the given BeanFactory and BeanDefinition, using the givenTypeConverter. -
Uses of TypeConverter in org.springframework.beans.support
Methods in org.springframework.beans.support that return TypeConverterModifier and TypeMethodDescriptionprotected TypeConverterArgumentConvertingMethodInvoker.getDefaultTypeConverter()Obtain the default TypeConverter for this method invoker.ArgumentConvertingMethodInvoker.getTypeConverter()Return the TypeConverter used for argument type conversion.Methods in org.springframework.beans.support with parameters of type TypeConverterModifier and TypeMethodDescriptionvoidArgumentConvertingMethodInvoker.setTypeConverter(TypeConverter typeConverter) Set a TypeConverter to use for argument type conversion. -
Uses of TypeConverter in org.springframework.jdbc.core
Methods in org.springframework.jdbc.core with parameters of type TypeConverterModifier and TypeMethodDescriptionprotected TBeanPropertyRowMapper.constructMappedInstance(ResultSet rs, TypeConverter tc) Construct an instance of the mapped class for the current row.protected TDataClassRowMapper.constructMappedInstance(ResultSet rs, TypeConverter tc) -
Uses of TypeConverter in org.springframework.validation
Classes in org.springframework.validation that implement TypeConverterModifier and TypeClassDescriptionclassBinder 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 TypeConverterModifier and TypeMethodDescriptionprotected TypeConverterDataBinder.getTypeConverter()Return the underlying TypeConverter of this binder's BindingResult. -
Uses of TypeConverter in org.springframework.web.bind
Classes in org.springframework.web.bind that implement TypeConverterModifier 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 TypeConverter in org.springframework.web.bind.support
Classes in org.springframework.web.bind.support that implement TypeConverterModifier 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. -
Uses of TypeConverter in org.springframework.web.servlet.mvc.method.annotation
Classes in org.springframework.web.servlet.mvc.method.annotation that implement TypeConverterModifier and TypeClassDescriptionclassSubclass ofServletRequestDataBinderthat adds URI template variables to the values used for data binding.