类 StandardProperty
- java.lang.Object
-
- org.hibernate.tuple.AbstractAttribute
-
- org.hibernate.tuple.AbstractNonIdentifierAttribute
-
- org.hibernate.tuple.StandardProperty
-
- 所有已实现的接口:
AttributeDefinition,Attribute,NonIdentifierAttribute,Property
@Deprecated public class StandardProperty extends AbstractNonIdentifierAttribute implements NonIdentifierAttribute
已过时。Use one of theAttribute-based impls instead.Represents a non-identifier property within the Hibernate runtime-metamodel.- 作者:
- Steve Ebersole
-
-
构造器概要
构造器 构造器 说明 StandardProperty(String name, Type type, boolean lazy, boolean insertable, boolean updateable, ValueGeneration valueGenerationStrategy, boolean nullable, boolean checkable, boolean versionable, CascadeStyle cascadeStyle, FetchMode fetchMode)已过时。Constructs NonIdentifierProperty instances.
-
方法概要
-
从类继承的方法 org.hibernate.tuple.AbstractNonIdentifierAttribute
attributeNumber, getCascadeStyle, getFetchMode, getSource, getValueGenerationStrategy, isDirtyCheckable, isDirtyCheckable, isInsertable, isLazy, isNullable, isUpdateable, isVersionable, loggableMetadata, sessionFactory, source, toString
-
从类继承的方法 org.hibernate.tuple.AbstractAttribute
getName, getNode, getType
-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
从接口继承的方法 org.hibernate.persister.walking.spi.AttributeDefinition
getName, getSource, getType
-
从接口继承的方法 org.hibernate.tuple.NonIdentifierAttribute
getCascadeStyle, getFetchMode, getValueGenerationStrategy, isDirtyCheckable, isDirtyCheckable, isInsertable, isLazy, isNullable, isUpdateable, isVersionable
-
-
-
-
构造器详细资料
-
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)
已过时。Constructs NonIdentifierProperty instances.- 参数:
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
-
-