Uses of Interface
org.springframework.core.convert.converter.Converter
Package
Description
SPI to implement Converters for the type conversion system.
Default implementation of the type conversion system.
Support classes for Spring's serializer abstraction.
-
Uses of Converter in org.springframework.core.convert.converter
Modifier and TypeMethodDescriptionConverterFactory.getConverter
(Class<T> targetType) Get the converter to convert from S to target type T, where T is also an instance of R.Modifier and TypeMethodDescription<S,
T> void ConverterRegistry.addConverter
(Class<S> sourceType, Class<T> targetType, Converter<? super S, ? extends T> converter) Add a plain converter to this registry.void
ConverterRegistry.addConverter
(Converter<?, ?> converter) Add a plain converter to this registry.ModifierConstructorDescriptionConvertingComparator
(Comparator<T> comparator, Converter<S, T> converter) Create a newConvertingComparator
instance.ConvertingComparator
(Converter<S, T> converter) Create a newConvertingComparator
instance. -
Uses of Converter in org.springframework.core.convert.support
Modifier and TypeMethodDescription<S,
T> void GenericConversionService.addConverter
(Class<S> sourceType, Class<T> targetType, Converter<? super S, ? extends T> converter) void
GenericConversionService.addConverter
(Converter<?, ?> converter) -
Uses of Converter in org.springframework.core.serializer.support
Modifier and TypeClassDescriptionclass
AConverter
that delegates to aDeserializer
to convert data in a byte array to an object.class
AConverter
that delegates to aSerializer
to convert an object to a byte array.