java.lang.Object
org.jooq.impl.AbstractConverter<T,U>
 
org.jooq.impl.AbstractContextConverter<T,U>
 
org.jooq.impl.JPAConverter<T,U> 
- All Implemented Interfaces:
 Serializable,ContextConverter<T,,U> Converter<T,U> 
A converter that delegates data type conversions to a JPA
 
AttributeConverter.
 
 This is particularly useful when generating code from a
 JPADatabase, which reverse engineers JPA annotated entities, in
 case of which, by default, the AttributeConverter annotations are
 discovered automatically and the user-defined type is applied also in the
 jOOQ meta model.
- Author:
 - Lukas Eder
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionJPAConverter(Class<? extends jakarta.persistence.AttributeConverter<U, T>> klass)  - 
Method Summary
Modifier and TypeMethodDescriptionfinal Ufrom(T t, ConverterContext scope) Read and convert a database object to a user object.final Tto(U u, ConverterContext scope) Convert and write a user object to a database object.Methods inherited from class org.jooq.impl.AbstractContextConverter
toStringMethods inherited from class org.jooq.impl.AbstractConverter
fromType, toType 
- 
Constructor Details
- 
JPAConverter
 
 - 
 - 
Method Details
- 
from
Description copied from interface:ContextConverterRead and convert a database object to a user object.- Parameters:
 t- The database object.scope- The context of this conversion.- Returns:
 - The user object.
 
 - 
to
Description copied from interface:ContextConverterConvert and write a user object to a database object.- Parameters:
 u- The user object.scope- The context of this conversion.- Returns:
 - The database object.
 
 
 -