org.hibernate.type.descriptor.sql.TimestampTypeDescriptor Java Examples

The following examples show how to use org.hibernate.type.descriptor.sql.TimestampTypeDescriptor. 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: YearMonthTimestampType.java    From hibernate-types with Apache License 2.0 5 votes vote down vote up
public YearMonthTimestampType(Configuration configuration) {
    super(
        TimestampTypeDescriptor.INSTANCE,
        YearMonthTypeDescriptor.INSTANCE,
        configuration
    );
}
 
Example #2
Source File: CalendarType.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
public CalendarType() {
	super( TimestampTypeDescriptor.INSTANCE, CalendarTypeDescriptor.INSTANCE );
}
 
Example #3
Source File: InstantType.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
public InstantType() {
	super( TimestampTypeDescriptor.INSTANCE, InstantJavaDescriptor.INSTANCE );
}
 
Example #4
Source File: ZonedDateTimeType.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
public ZonedDateTimeType() {
	super( TimestampTypeDescriptor.INSTANCE, ZonedDateTimeJavaDescriptor.INSTANCE );
}
 
Example #5
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 #6
Source File: LocalDateTimeType.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
public LocalDateTimeType() {
	super( TimestampTypeDescriptor.INSTANCE, LocalDateTimeJavaDescriptor.INSTANCE );
}
 
Example #7
Source File: OffsetDateTimeType.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
public OffsetDateTimeType() {
	super( TimestampTypeDescriptor.INSTANCE, OffsetDateTimeJavaDescriptor.INSTANCE );
}
 
Example #8
Source File: YearMonthTimestampType.java    From hibernate-types with Apache License 2.0 4 votes vote down vote up
public YearMonthTimestampType() {
    super(
        TimestampTypeDescriptor.INSTANCE,
        YearMonthTypeDescriptor.INSTANCE
    );
}
 
Example #9
Source File: InstantType.java    From sakai with Educational Community License v2.0 4 votes vote down vote up
public InstantType() {
    super(TimestampTypeDescriptor.INSTANCE, InstantTypeDescriptor.INSTANCE);
}
 
Example #10
Source File: InstantType.java    From sakai with Educational Community License v2.0 4 votes vote down vote up
public InstantType() {
    super(TimestampTypeDescriptor.INSTANCE, InstantTypeDescriptor.INSTANCE);
}