- All Known Implementing Classes:
DefaultConverterProvider
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A
ConverterProvider
provides Converter
implementations
for any combination of types <T>
and
<U>
.
ConverterProvider
can be used together with
RecordMapper
, e.g. when mapping JSON
or XML
data
types onto POJO types using third party libraries like Jackson, Gson, JAXB,
or others.
- Author:
- Lukas Eder
-
Method Summary
-
Method Details
-
provide
Provide a converter that can convert between<T>
and<U>
types.- Returns:
- The converter for
<T, U>
, ornull
if no such converter could be provided, in case of which jOOQ'sDefaultConverterProvider
applies.
-