站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 3.2.3 正式版 API 英文文档

Uses of Class org.hibernate.engine.VersionValue (Hibernate API Documentation) - Hibernate 3.2.3 正式版 API 英文文档


Uses of Class
org.hibernate.engine.VersionValue

Packages that use VersionValue
org.hibernate.engine This package contains classes that are "shared" by other packages, and implementations of some key algorithms. 
org.hibernate.tuple This package defines a runtime metamodel for entities at the object level and abstracts the differences between the various entity modes. 
 

Uses of VersionValue in org.hibernate.engine
 

Fields in org.hibernate.engine declared as VersionValue
static VersionValue VersionValue.NULL
          Assume the transient instance is newly instantiated if the version is null, otherwise assume it is a detached instance.
static VersionValue VersionValue.UNDEFINED
          Assume the transient instance is newly instantiated if the version is null, otherwise defer to the identifier unsaved-value.
static VersionValue VersionValue.NEGATIVE
          Assume the transient instance is newly instantiated if the version is negative, otherwise assume it is a detached instance.
 

Methods in org.hibernate.engine that return VersionValue
static VersionValue UnsavedValueFactory.getUnsavedVersionValue(String versionUnsavedValue, Getter versionGetter, VersionType versionType, Constructor constructor)
           
 

Uses of VersionValue in org.hibernate.tuple
 

Methods in org.hibernate.tuple that return VersionValue
 VersionValue VersionProperty.getUnsavedValue()
           
 

Constructors in org.hibernate.tuple with parameters of type VersionValue
VersionProperty(String name, String node, Type type, boolean lazy, boolean insertable, boolean updateable, boolean insertGenerated, boolean updateGenerated, boolean nullable, boolean checkable, boolean versionable, CascadeStyle cascadeStyle, VersionValue unsavedValue)
          Constructs VersionProperty instances.