org.hibernate.type.CustomType Java Examples
The following examples show how to use
org.hibernate.type.CustomType.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Configuration.java From lams with GNU General Public License v2.0 | 4 votes |
public Configuration registerTypeOverride(UserType type, String[] keys) { basicTypes.add( new CustomType( type, keys ) ); return this; }
Example #2
Source File: BasicTypeRegistration.java From lams with GNU General Public License v2.0 | 4 votes |
public BasicTypeRegistration(UserType type, String[] keys) { this( new CustomType( type, keys ), keys ); }