Uses of Class
org.springframework.data.convert.PropertyValueConverterRegistrar
Packages that use PropertyValueConverterRegistrar
Package
Description
General purpose conversion framework to read objects from a data store abstraction and write it back.
-
Uses of PropertyValueConverterRegistrar in org.springframework.data.convert
Methods in org.springframework.data.convert that return PropertyValueConverterRegistrarModifier and TypeMethodDescriptionPropertyValueConverterRegistrar.ReadingConverterRegistrationBuilder.reading(BiFunction<R, ValueConversionContext<P>, S> reader) Describes how to read a database value into a domain object's property value.PropertyValueConverterRegistrar.ReadingConverterRegistrationBuilder.readingAsIs()PropertyValueConverterRegistrar.registerConverter(Class<?> type, String path, PropertyValueConverter<?, ?, ? extends ValueConversionContext<?>> converter) Register the givenconverterfor the given type and property identified by its name.Method parameters in org.springframework.data.convert with type arguments of type PropertyValueConverterRegistrarModifier and TypeMethodDescriptionstatic <P extends PersistentProperty<P>>
PropertyValueConversionsPropertyValueConversions.simple(Consumer<PropertyValueConverterRegistrar<P>> config) Helper method used to create aPropertyValueConversionsinstance with the configuredconvertersprovided by thecallback.