Uses of Class
org.hibernate.tuple.StandardProperty

Packages that use StandardProperty
org.hibernate.tuple This package defines a runtime metamodel for entities at the object level and abstracts the differences between the various entity modes. 
org.hibernate.type A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types. 
 

Uses of StandardProperty in org.hibernate.tuple
 

Subclasses of StandardProperty in org.hibernate.tuple
 class VersionProperty
          Represents a version property within the Hibernate runtime-metamodel.
 

Methods in org.hibernate.tuple that return StandardProperty
static StandardProperty PropertyFactory.buildStandardProperty(Property property, boolean lazyAvailable)
          Generate a "standard" (i.e., non-identifier and non-version) based on the given mapped property.
 StandardProperty[] EntityMetamodel.getProperties()
           
 

Uses of StandardProperty in org.hibernate.type
 

Methods in org.hibernate.type with parameters of type StandardProperty
static int[] TypeFactory.findDirty(StandardProperty[] properties, Object[] x, Object[] y, boolean[][] includeColumns, boolean anyUninitializedProperties, SessionImplementor session)
          Determine if any of the given field values are dirty, returning an array containing indexes of the dirty fields or null if no fields are dirty.
static int[] TypeFactory.findModified(StandardProperty[] properties, Object[] x, Object[] y, boolean[][] includeColumns, boolean anyUninitializedProperties, SessionImplementor session)
          Determine if any of the given field values are modified, returning an array containing indexes of the dirty fields or null if no fields are dirty.