Uses of Interface
org.springframework.core.convert.converter.Converter
Packages that use 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
Methods in org.springframework.core.convert.converter that return ConverterModifier 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.Methods in org.springframework.core.convert.converter with parameters of type ConverterModifier 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.voidConverterRegistry.addConverter(Converter<?, ?> converter) Add a plain converter to this registry.Constructors in org.springframework.core.convert.converter with parameters of type ConverterModifierConstructorDescriptionConvertingComparator(Comparator<T> comparator, Converter<S, T> converter) Create a newConvertingComparatorinstance.ConvertingComparator(Converter<S, T> converter) Create a newConvertingComparatorinstance. -
Uses of Converter in org.springframework.core.convert.support
Methods in org.springframework.core.convert.support with parameters of type ConverterModifier and TypeMethodDescription<S,T> void GenericConversionService.addConverter(Class<S> sourceType, Class<T> targetType, Converter<? super S, ? extends T> converter) voidGenericConversionService.addConverter(Converter<?, ?> converter) -
Uses of Converter in org.springframework.core.serializer.support
Classes in org.springframework.core.serializer.support that implement ConverterModifier and TypeClassDescriptionclassAConverterthat delegates to aDeserializerto convert data in a byte array to an object.classAConverterthat delegates to aSerializerto convert an object to a byte array.