Example usage for org.hibernate.type.descriptor.java JdbcTimeTypeDescriptor INSTANCE

List of usage examples for org.hibernate.type.descriptor.java JdbcTimeTypeDescriptor INSTANCE

Introduction

In this page you can find the example usage for org.hibernate.type.descriptor.java JdbcTimeTypeDescriptor INSTANCE.

Prototype

JdbcTimeTypeDescriptor INSTANCE

To view the source code for org.hibernate.type.descriptor.java JdbcTimeTypeDescriptor INSTANCE.

Click Source Link

Usage

From source file:org.jadira.usertype.dateandtime.legacyjdk.LocationSafeJdbcTimeType.java

License:Apache License

public LocationSafeJdbcTimeType() {
    super(org.jadira.usertype.dateandtime.legacyjdk.descriptor.sql.LocationSafeTimeTypeDescriptor.INSTANCE,
            JdbcTimeTypeDescriptor.INSTANCE);
}

From source file:org.jadira.usertype.spi.shared.DstSafeTimeType.java

License:Apache License

public DstSafeTimeType() {
    super(DstSafeTimeTypeDescriptor.INSTANCE, JdbcTimeTypeDescriptor.INSTANCE);
}

From source file:org.jadira.usertype.spi.shared.DstSafeTimeType.java

License:Apache License

public DstSafeTimeType(Calendar cal) {
    super(cal == null ? DstSafeTimeTypeDescriptor.INSTANCE : new DstSafeTimeTypeDescriptor(cal),
            JdbcTimeTypeDescriptor.INSTANCE);
}