类org.hibernate.type.CustomType源码实例Demo

下面列出了怎么用org.hibernate.type.CustomType的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: lams   文件: Configuration.java
public Configuration registerTypeOverride(UserType type, String[] keys) {
	basicTypes.add( new CustomType( type, keys ) );
	return this;
}
 
源代码2 项目: lams   文件: BasicTypeRegistration.java
public BasicTypeRegistration(UserType type, String[] keys) {
	this( new CustomType( type, keys ), keys );
}
 
 类所在包
 类方法
 同包方法