类 StandardBasicValueConverter<O,R>
- java.lang.Object
-
- org.hibernate.metamodel.model.convert.internal.StandardBasicValueConverter<O,R>
-
- 所有已实现的接口:
BasicValueConverter<O,R>
public class StandardBasicValueConverter<O,R> extends Object implements BasicValueConverter<O,R>
A no-op / pass-through conversion- 作者:
- Steve Ebersole
-
-
字段概要
字段 修饰符和类型 字段 说明 static StandardBasicValueConverterINSTANCESingleton access
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 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
-
-
-
字段详细资料
-
INSTANCE
public static final StandardBasicValueConverter INSTANCE
Singleton access
-
-
方法详细资料
-
toDomainValue
public O toDomainValue(R relationalForm)
从接口复制的说明:BasicValueConverterConvert the relational form just retrieved from JDBC ResultSet into the domain form.- 指定者:
toDomainValue在接口中BasicValueConverter<O,R>
-
toRelationalValue
public R toRelationalValue(O domainForm)
从接口复制的说明:BasicValueConverterConvert the domain form into the relational form in preparation for storage into JDBC- 指定者:
toRelationalValue在接口中BasicValueConverter<O,R>
-
-