Save This Page
Home » Hibernate-3.3.2.GA » org.hibernate » tuple » [javadoc | source]
org.hibernate.tuple
public class: StandardProperty [javadoc | source]
java.lang.Object
   org.hibernate.tuple.Property
      org.hibernate.tuple.StandardProperty

All Implemented Interfaces:
    Serializable

Direct Known Subclasses:
    VersionProperty

Represents a basic property within the Hibernate runtime-metamodel.
Constructor:
 public StandardProperty(String name,
    String node,
    Type type,
    boolean lazy,
    boolean insertable,
    boolean updateable,
    boolean insertGenerated,
    boolean updateGenerated,
    boolean nullable,
    boolean checkable,
    boolean versionable,
    CascadeStyle cascadeStyle,
    FetchMode fetchMode) 
    Constructs StandardProperty instances.
    Parameters:
    name - The name by which the property can be referenced within its owner.
    node - The node name to use for XML-based representation of this property.
    type - The Hibernate Type of this property.
    lazy - Should this property be handled lazily?
    insertable - Is this property an insertable value?
    updateable - Is this property an updateable value?
    insertGenerated - Is this property generated in the database on insert?
    updateGenerated - Is this property generated in the database on update?
    nullable - Is this property a nullable value?
    checkable - Is this property a checkable value?
    versionable - Is this property a versionable value?
    cascadeStyle - The cascade style for this property's value.
    fetchMode - Any fetch mode defined for this property
Method from org.hibernate.tuple.StandardProperty Summary:
getCascadeStyle,   getFetchMode,   isDirtyCheckable,   isDirtyCheckable,   isInsertGenerated,   isInsertable,   isLazy,   isNullable,   isUpdateGenerated,   isUpdateable,   isVersionable
Methods from org.hibernate.tuple.Property:
getName,   getNode,   getType,   toString
Methods from java.lang.Object:
clone,   equals,   finalize,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.hibernate.tuple.StandardProperty Detail:
 public CascadeStyle getCascadeStyle() 
 public FetchMode getFetchMode() 
 public boolean isDirtyCheckable() 
 public boolean isDirtyCheckable(boolean hasUninitializedProperties) 
 public boolean isInsertGenerated() 
 public boolean isInsertable() 
 public boolean isLazy() 
 public boolean isNullable() 
 public boolean isUpdateGenerated() 
 public boolean isUpdateable() 
 public boolean isVersionable()