Package org.hibernate.tuple
Class StandardProperty
- java.lang.Object
-
- org.hibernate.tuple.AbstractAttribute
-
- org.hibernate.tuple.AbstractNonIdentifierAttribute
-
- org.hibernate.tuple.StandardProperty
-
- All Implemented Interfaces:
AttributeDefinition,Attribute,NonIdentifierAttribute,Property
@Deprecated public class StandardProperty extends AbstractNonIdentifierAttribute implements NonIdentifierAttribute
Deprecated.Use one of theAttribute-based impls instead.Represents a non-identifier property within the Hibernate runtime-metamodel.
-
-
Constructor Summary
Constructors Constructor Description StandardProperty(String name, Type type, boolean lazy, boolean insertable, boolean updateable, ValueGeneration valueGenerationStrategy, boolean nullable, boolean checkable, boolean versionable, CascadeStyle cascadeStyle, FetchMode fetchMode)Deprecated.Constructs NonIdentifierProperty instances.
-
Method Summary
-
Methods inherited from class org.hibernate.tuple.AbstractNonIdentifierAttribute
attributeNumber, getCascadeStyle, getFetchMode, getSource, getValueGenerationStrategy, isDirtyCheckable, isDirtyCheckable, isInsertable, isLazy, isNullable, isUpdateable, isVersionable, loggableMetadata, sessionFactory, source, toString
-
Methods inherited from class org.hibernate.tuple.AbstractAttribute
getName, getNode, getType
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.hibernate.persister.walking.spi.AttributeDefinition
getName, getSource, getType
-
Methods inherited from interface org.hibernate.tuple.NonIdentifierAttribute
getCascadeStyle, getFetchMode, getValueGenerationStrategy, isDirtyCheckable, isDirtyCheckable, isInsertable, isLazy, isNullable, isUpdateable, isVersionable
-
-
-
-
Constructor Detail
-
StandardProperty
public StandardProperty(String name, Type type, boolean lazy, boolean insertable, boolean updateable, ValueGeneration valueGenerationStrategy, boolean nullable, boolean checkable, boolean versionable, CascadeStyle cascadeStyle, FetchMode fetchMode)
Deprecated.Constructs NonIdentifierProperty instances.- Parameters:
name- The name by which the property can be referenced within its owner.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?valueGenerationStrategy- How (if) values for this attribute are generatednullable- 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
-
-