Interface BasicValueConverter<O,R>
-
- All Known Subinterfaces:
EnumValueConverter<O,R>,JpaAttributeConverter<O,R>
public interface BasicValueConverter<O,R>Support for basic-value conversions. Conversions might be defined by: * a custom JPAAttributeConverter, * implicitly, based on the Java type (e.g., enums) * etc
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OtoDomainValue(R relationalForm)Convert the relational form just retrieved from JDBC ResultSet into the domain form.RtoRelationalValue(O domainForm)Convert the domain form into the relational form in preparation for storage into JDBC
-