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.
Core domain types around DatabaseClient.
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 TypeInterfaceDescriptioninterface
The central interface of Spring's low-level JavaBeans infrastructure.interface
Interface that encapsulates configuration methods for a PropertyAccessor.Classes in org.springframework.beans that implement TypeConverterModifier 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
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. -
Uses of TypeConverter in org.springframework.beans.factory.annotation
Methods in org.springframework.beans.factory.annotation with parameters of type TypeConverterModifier and TypeMethodDescriptionprotected boolean
QualifierAnnotationAutowireCandidateResolver.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 TypeConverter
AbstractFactoryBean.getBeanTypeConverter()
Obtain a bean type converter from the BeanFactory that this bean runs in.protected TypeConverter
MethodInvokingBean.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.void
ConfigurableBeanFactory.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 TypeConverter
AbstractBeanFactory.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) RegisteredBean.resolveAutowiredArgument
(DependencyDescriptor descriptor, TypeConverter typeConverter, Set<String> autowiredBeanNames) Resolve an autowired argument.DefaultListableBeanFactory.resolveDependency
(DependencyDescriptor descriptor, String requestingBeanName, Set<String> autowiredBeanNames, TypeConverter typeConverter) void
AbstractBeanFactory.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 TypeConverter
ArgumentConvertingMethodInvoker.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 TypeMethodDescriptionvoid
ArgumentConvertingMethodInvoker.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 T
BeanPropertyRowMapper.constructMappedInstance
(ResultSet rs, TypeConverter tc) Construct an instance of the mapped class for the current row.protected T
DataClassRowMapper.constructMappedInstance
(ResultSet rs, TypeConverter tc) -
Uses of TypeConverter in org.springframework.r2dbc.core
Methods in org.springframework.r2dbc.core with parameters of type TypeConverterModifier and TypeMethodDescriptionprotected T
BeanPropertyRowMapper.constructMappedInstance
(Readable readable, List<? extends ReadableMetadata> itemMetadatas, TypeConverter tc) Construct an instance of the mapped class for the currentReadable
.protected T
DataClassRowMapper.constructMappedInstance
(Readable readable, List<? extends ReadableMetadata> itemMetadatas, TypeConverter tc) -
Uses of TypeConverter in org.springframework.validation
Classes in org.springframework.validation that implement TypeConverterModifier 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.Methods in org.springframework.validation that return TypeConverterModifier and TypeMethodDescriptionprotected TypeConverter
DataBinder.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 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 TypeConverter in org.springframework.web.bind.support
Classes in org.springframework.web.bind.support that implement TypeConverterModifier 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 TypeConverter in org.springframework.web.servlet.mvc.method.annotation
Classes in org.springframework.web.servlet.mvc.method.annotation that implement TypeConverterModifier and TypeClassDescriptionclass
Subclass ofServletRequestDataBinder
that adds URI template variables to the values used for data binding.