Example usage for org.hibernate.type.descriptor.sql TimestampTypeDescriptor INSTANCE

List of usage examples for org.hibernate.type.descriptor.sql TimestampTypeDescriptor INSTANCE

Introduction

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

Prototype

TimestampTypeDescriptor INSTANCE

To view the source code for org.hibernate.type.descriptor.sql TimestampTypeDescriptor INSTANCE.

Click Source Link

Usage

From source file:io.pivotal.strepsirrhini.chaosloris.data.InstantType.java

License:Apache License

public InstantType() {
    super(TimestampTypeDescriptor.INSTANCE, InstantJavaDescriptor.INSTANCE);
}

From source file:it.scoppelletti.programmerpower.data.types.SimpleTimestampType.java

License:Apache License

/**
 * Costruttore.
 */
public SimpleTimestampType() {
    super(TimestampTypeDescriptor.INSTANCE, SimpleTimestampTypeDescriptor.getInstance());
}

From source file:it.scoppelletti.programmerpower.data.types.SimpleTimeType.java

License:Apache License

/**
 * Costruttore.
 */
public SimpleTimeType() {
    super(TimestampTypeDescriptor.INSTANCE, SimpleTimeTypeDescriptor.getInstance());
}