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

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

Introduction

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

Prototype

JdbcDateTypeDescriptor INSTANCE

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

Click Source Link

Usage

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

License:Apache License

public DstSafeDateType() {
    super(DstSafeDateTypeDescriptor.INSTANCE, JdbcDateTypeDescriptor.INSTANCE);
}

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

License:Apache License

public DstSafeDateType(Calendar cal) {
    super(cal == null ? DstSafeDateTypeDescriptor.INSTANCE : new DstSafeDateTypeDescriptor(cal),
            JdbcDateTypeDescriptor.INSTANCE);
}

From source file:org.jasig.ssp.util.hibernate.ConfigurableDateType.java

License:Apache License

public ConfigurableDateType(DateTypeDescriptor descriptor) {
    super(descriptor, JdbcDateTypeDescriptor.INSTANCE);
}