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