Uses of Interface
org.springframework.data.convert.PropertyValueConversions
Package
Description
General purpose conversion framework to read objects from a data store abstraction and write it back.
-
Uses of PropertyValueConversions in org.springframework.data.convert
Modifier and TypeClassDescriptionclass
PropertyValueConversions
implementation allowing aPropertyValueConverterFactory
creatingconverters
to be chosen.Modifier and TypeMethodDescriptionCustomConversions.ConverterConfiguration.getPropertyValueConversions()
CustomConversions.getPropertyValueConversions()
Gets a reference to the configuredPropertyValueConversions
if property value conversions are supported by the underlying data store.static <P extends PersistentProperty<P>>
PropertyValueConversionsPropertyValueConversions.simple
(Consumer<PropertyValueConverterRegistrar<P>> config) Helper method used to create aPropertyValueConversions
instance with the configuredconverters
provided by thecallback
.ModifierConstructorDescriptionConverterConfiguration
(CustomConversions.StoreConversions storeConversions, List<?> userConverters, Predicate<GenericConverter.ConvertiblePair> converterRegistrationFilter, PropertyValueConversions propertyValueConversions) Create a new ConverterConfiguration holding the givenCustomConversions.StoreConversions
and user defined converters as well as aCollection
ofGenericConverter.ConvertiblePair
for which to skip the registration of default converters.