Uses of Interface
org.hibernate.type.VersionType

Packages that use VersionType
org.hibernate   
org.hibernate.engine   
org.hibernate.param   
org.hibernate.persister.entity   
org.hibernate.type   
 

Uses of VersionType in org.hibernate
 

Methods in org.hibernate with parameters of type VersionType
abstract  boolean ReplicationMode.shouldOverwriteCurrentVersion(Object entity, Object currentVersion, Object newVersion, VersionType versionType)
           
 

Uses of VersionType in org.hibernate.engine
 

Methods in org.hibernate.engine with parameters of type VersionType
static VersionValue UnsavedValueFactory.getUnsavedVersionValue(String versionUnsavedValue, Getter versionGetter, VersionType versionType, Constructor constructor)
           
static Object Versioning.increment(Object version, VersionType versionType, SessionImplementor session)
          Increment the given version number
static boolean Versioning.seedVersion(Object[] fields, int versionProperty, VersionType versionType, SessionImplementor session)
          Seed the given instance state snapshot with an initial version number
 

Uses of VersionType in org.hibernate.param
 

Constructors in org.hibernate.param with parameters of type VersionType
VersionTypeSeedParameterSpecification(VersionType type)
           
 

Uses of VersionType in org.hibernate.persister.entity
 

Methods in org.hibernate.persister.entity that return VersionType
 VersionType EntityPersister.getVersionType()
          Get the type of versioning (optional operation)
 VersionType AbstractEntityPersister.getVersionType()
           
 

Uses of VersionType in org.hibernate.type
 

Classes in org.hibernate.type that implement VersionType
 class BinaryType
          binary: A type that maps an SQL VARBINARY to a Java byte[].
 class ByteType
          byte: A type that maps an SQL TINYINT to a Java Byte.
 class CalendarType
          calendar: A type mapping for a Calendar object that represents a datetime.
 class CustomType
          Adapts UserType to the generic Type interface.
 class DbTimestampType
          dbtimestamp: An extension of TimestampType which maps to the database's current timestamp, rather than the jvm's current timestamp.
 class IntegerType
          integer: A type that maps an SQL INT to a Java Integer.
 class LongType
          long: A type that maps an SQL BIGINT to a Java Long.
 class ShortType
          short: A type that maps an SQL SMALLINT to a Java Short.
 class TimestampType
          timestamp: A type that maps an SQL TIMESTAMP to a Java java.util.Date or java.sql.Timestamp.