Uses of Interface
org.hibernate.type.VersionType

Packages that use VersionType
org.hibernate This package defines the central Hibernate APIs. 
org.hibernate.engine This package contains classes that are "shared" by other packages, and implementations of some key algorithms. 
org.hibernate.persister.entity This package abstracts persistence mechanisms for entities, and defines the Hibernate runtime metamodel. 
org.hibernate.type A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types. 
 

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 Object Versioning.increment(Object version, VersionType versionType)
          Increment the given version number
static boolean Versioning.seedVersion(Object[] fields, int versionProperty, VersionType versionType)
          Seed the given instance state snapshot with an initial version number
static Cascades.VersionValue UnsavedValueFactory.getUnsavedVersionValue(String versionUnsavedValue, Getter versionGetter, VersionType versionType, Constructor constructor)
           
 

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 BasicEntityPersister.getVersionType()
           
 

Uses of VersionType in org.hibernate.type
 

Classes in org.hibernate.type that implement VersionType
 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 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.