接口 BasicValueConverter<O,R>
-
- 所有已知子接口:
EnumValueConverter<O,R>,JpaAttributeConverter<O,R>
- 所有已知实现类:
JpaAttributeConverterImpl,NamedEnumValueConverter,OrdinalEnumValueConverter,StandardBasicValueConverter
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- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 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
-