List of usage examples for org.hibernate.type.descriptor.sql TimestampTypeDescriptor INSTANCE
TimestampTypeDescriptor INSTANCE
To view the source code for org.hibernate.type.descriptor.sql TimestampTypeDescriptor INSTANCE.
Click Source Link
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()); }