Package org.hibernate.type
Class DbTimestampType
- java.lang.Object
-
- org.hibernate.type.AbstractStandardBasicType<T>
-
- org.hibernate.type.AbstractSingleColumnStandardBasicType<Date>
-
- org.hibernate.type.TimestampType
-
- org.hibernate.type.DbTimestampType
-
- All Implemented Interfaces:
Serializable,BasicType,LiteralType<Date>,ProcedureParameterExtractionAware<Date>,ProcedureParameterNamedBinder,SingleColumnType<Date>,StringRepresentableType<Date>,Type,VersionType<Date>
public class DbTimestampType extends TimestampType
dbtimestamp: An extension ofTimestampTypewhich maps to the database's current timestamp, rather than the jvm's current timestamp. Note: May/may-not cause issues on dialects which do not properly support a true notion of timestamp (Oracle < 8, for example, where only its DATE datatype is supported). Depends on the frequency of DML operations...- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static DbTimestampTypeINSTANCE
-
Constructor Summary
Constructors Constructor Description DbTimestampType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Returns the abbreviated name of the type.String[]getRegistrationKeys()Get the names under which this type should be registered in the type registry.Dateseed(SharedSessionContractImplementor session)Generate an initial version.-
Methods inherited from class org.hibernate.type.TimestampType
fromStringValue, getComparator, next, objectToSQLString
-
Methods inherited from class org.hibernate.type.AbstractSingleColumnStandardBasicType
nullSafeSet, sqlType
-
Methods inherited from class org.hibernate.type.AbstractStandardBasicType
assemble, beforeAssemble, canDoExtraction, canDoSetting, compare, deepCopy, deepCopy, defaultSizes, dictatedSizes, disassemble, extract, extract, fromString, get, getColumnSpan, getDefaultSize, getDictatedSize, getHashCode, getHashCode, getJavaTypeDescriptor, getMutabilityPlan, getReplacement, getReturnedClass, getSemiResolvedType, getSqlTypeDescriptor, hydrate, isAnyType, isAssociationType, isCollectionType, isComponentType, isDirty, isDirty, isDirty, isEntityType, isEqual, isEqual, isModified, isMutable, isSame, isXMLElement, nullSafeGet, nullSafeGet, nullSafeGet, nullSafeGet, nullSafeSet, nullSafeSet, nullSafeSet, nullSafeSet, registerUnderJavaType, remapSqlTypeDescriptor, replace, replace, resolve, semiResolve, set, setJavaTypeDescriptor, setSqlTypeDescriptor, sqlTypes, toColumnNullness, toLoggableString, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.type.SingleColumnType
get, nullSafeGet, set, toString
-
Methods inherited from interface org.hibernate.type.Type
assemble, beforeAssemble, compare, deepCopy, defaultSizes, dictatedSizes, disassemble, getColumnSpan, getHashCode, getHashCode, getReturnedClass, getSemiResolvedType, hydrate, isAnyType, isAssociationType, isCollectionType, isComponentType, isDirty, isDirty, isEntityType, isEqual, isEqual, isModified, isMutable, isSame, nullSafeGet, nullSafeGet, nullSafeSet, nullSafeSet, replace, replace, resolve, resolve, semiResolve, sqlTypes, toColumnNullness, toLoggableString
-
-
-
-
Field Detail
-
INSTANCE
public static final DbTimestampType INSTANCE
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:TypeReturns the abbreviated name of the type.- Specified by:
getNamein interfaceType- Overrides:
getNamein classTimestampType- Returns:
- String the Hibernate type name
-
getRegistrationKeys
public String[] getRegistrationKeys()
Description copied from interface:BasicTypeGet the names under which this type should be registered in the type registry.- Specified by:
getRegistrationKeysin interfaceBasicType- Overrides:
getRegistrationKeysin classTimestampType- Returns:
- The keys under which to register this type.
-
seed
public Date seed(SharedSessionContractImplementor session)
Description copied from interface:VersionTypeGenerate an initial version.- Specified by:
seedin interfaceVersionType<Date>- Overrides:
seedin classTimestampType- Parameters:
session- The session from which this request originates.- Returns:
- an instance of the type
-
-