org.hibernate.type.descriptor.java.JdbcTimestampTypeDescriptor Java Examples

The following examples show how to use org.hibernate.type.descriptor.java.JdbcTimestampTypeDescriptor. 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: TimestampEpochType.java    From google-cloud-spanner-hibernate with GNU Lesser General Public License v2.1 4 votes vote down vote up
public TimestampEpochType() {
    super(
        BigIntTypeDescriptor.INSTANCE,
        JdbcTimestampTypeDescriptor.INSTANCE
    );
}
 
Example #2
Source File: TimestampType.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
public TimestampType() {
	super( TimestampTypeDescriptor.INSTANCE, JdbcTimestampTypeDescriptor.INSTANCE );
}
 
Example #3
Source File: DstSafeTimestampType.java    From jadira with Apache License 2.0 4 votes vote down vote up
public DstSafeTimestampType() {
	super(DstSafeTimestampTypeDescriptor.INSTANCE,
			JdbcTimestampTypeDescriptor.INSTANCE);
}
 
Example #4
Source File: DstSafeTimestampType.java    From jadira with Apache License 2.0 4 votes vote down vote up
public DstSafeTimestampType(Calendar cal) {
	super(cal == null ? DstSafeTimestampTypeDescriptor.INSTANCE : new DstSafeTimestampTypeDescriptor(cal),
			JdbcTimestampTypeDescriptor.INSTANCE);
}