Uses of Interface
org.springframework.data.convert.ConverterBuilder.ReadingConverterBuilder
Package
Description
General purpose conversion framework to read objects from a data store abstraction and write it back.
-
Uses of ConverterBuilder.ReadingConverterBuilder in org.springframework.data.convert
Modifier and TypeMethodDescriptionstatic <S,
T> ConverterBuilder.ReadingConverterBuilder<S, T> ConverterBuilder.reading
(Class<S> source, Class<T> target, Function<? super S, ? extends T> function) Creates a newConverterBuilder.ReadingConverterBuilder
to produce a converter to read values of the given source (the store type) into the given target (the domain type).