Uses of Interface
org.springframework.data.convert.PropertyValueConverterFactory
Package
Description
General purpose conversion framework to read objects from a data store abstraction and write it back.
-
Uses of PropertyValueConverterFactory in org.springframework.data.convert
Modifier and TypeMethodDescriptionPropertyValueConverterFactory.beanFactoryAware
(BeanFactory beanFactory) Obtain aPropertyValueConverterFactory
capable of looking up/creating thePropertyValueConverter
via the givenBeanFactory
.PropertyValueConverterFactory.caching
(PropertyValueConverterFactory factory) Obtain aPropertyValueConverterFactory
that will cachePropertyValueConverter
instances perPersistentProperty
.PropertyValueConverterFactory.chained
(List<PropertyValueConverterFactory> factoryList) Obtain aPropertyValueConverterFactory
that will try to obtain aPropertyValueConverter
from the given list offactories
by returning the first non null one.PropertyValueConverterFactory.chained
(PropertyValueConverterFactory... factories) Obtain aPropertyValueConverterFactory
that will try to obtain aPropertyValueConverter
from the given array offactories
by returning the first non null one.PropertyValueConverterFactory.configuredInstance
(ValueConverterRegistry<?> registrar) Obtain aPropertyValueConverterFactory
capable of looking up thePropertyValueConverter
in the givenPropertyValueConverterRegistrar
.SimplePropertyValueConversions.getConverterFactory()
Returns the configuredPropertyValueConverterFactory
responsible for creating the actualPropertyValueConverter
.PropertyValueConverterFactory.simple()
Obtain a simplePropertyValueConverterFactory
capable of instantiatingPropertyValueConverter
implementations via their defaultConstructor
or in case of anEnum
accessing the first enum value.Modifier and TypeMethodDescriptionPropertyValueConverterFactory.caching
(PropertyValueConverterFactory factory) Obtain aPropertyValueConverterFactory
that will cachePropertyValueConverter
instances perPersistentProperty
.PropertyValueConverterFactory.chained
(PropertyValueConverterFactory... factories) Obtain aPropertyValueConverterFactory
that will try to obtain aPropertyValueConverter
from the given array offactories
by returning the first non null one.void
SimplePropertyValueConversions.setConverterFactory
(PropertyValueConverterFactory converterFactory) Set thePropertyValueConverterFactory
responsible for creating the actualPropertyValueConverter
.Modifier and TypeMethodDescriptionPropertyValueConverterFactory.chained
(List<PropertyValueConverterFactory> factoryList) Obtain aPropertyValueConverterFactory
that will try to obtain aPropertyValueConverter
from the given list offactories
by returning the first non null one.