Uses of Class
org.hibernate.engine.Cascades.VersionValue

Packages that use Cascades.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 Cascades.VersionValue in org.hibernate.engine
 

Fields in org.hibernate.engine declared as Cascades.VersionValue
static Cascades.VersionValue Cascades.VERSION_SAVE_NULL
          Assume the transient instance is newly instantiated if the version is null, otherwise assume it is a detached instance.
static Cascades.VersionValue Cascades.VERSION_UNDEFINED
          Assume the transient instance is newly instantiated if the version is null, otherwise defer to the identifier unsaved-value.
static Cascades.VersionValue Cascades.VERSION_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 Cascades.VersionValue
static Cascades.VersionValue UnsavedValueFactory.getUnsavedVersionValue(String versionUnsavedValue, Getter versionGetter, VersionType versionType, Constructor constructor)
           
 

Uses of Cascades.VersionValue in org.hibernate.tuple
 

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

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