类 EmbeddedComponentType
- java.lang.Object
-
- org.hibernate.type.AbstractType
-
- org.hibernate.type.ComponentType
-
- org.hibernate.type.EmbeddedComponentType
-
- 所有已实现的接口:
Serializable,CompositeType,ProcedureParameterExtractionAware,Type
public class EmbeddedComponentType extends ComponentType
- 作者:
- Gavin King
- 另请参阅:
- 序列化表格
-
-
字段概要
-
从类继承的字段 org.hibernate.type.ComponentType
componentTuplizer, entityMode, propertySpan
-
从类继承的字段 org.hibernate.type.AbstractType
LEGACY_DEFAULT_SIZE, LEGACY_DICTATED_SIZE
-
-
构造器概要
构造器 构造器 说明 EmbeddedComponentType(ComponentMetamodel metamodel)EmbeddedComponentType(TypeFactory.TypeScope typeScope, ComponentMetamodel metamodel)已过时。Use the other constructor
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 Objectinstantiate(Object parent, SharedSessionContractImplementor session)booleanisEmbedded()Is this component embedded?booleanisMethodOf(Method method)Is the given method a member of this component's class?-
从类继承的方法 org.hibernate.type.ComponentType
assemble, canDoExtraction, compare, deepCopy, defaultSizes, dictatedSizes, disassemble, extract, extract, getCascadeStyle, getColumnSpan, getComponentTuplizer, getEntityMode, getFetchMode, getHashCode, getHashCode, getName, getPropertyIndex, getPropertyNames, getPropertyNullability, getPropertyValue, getPropertyValue, getPropertyValue, getPropertyValueGenerationStrategies, getPropertyValues, getPropertyValues, getReturnedClass, getSubtypes, hasNotNullProperty, hydrate, instantiate, isComponentType, isDirty, isDirty, isEqual, isEqual, isKey, isModified, isMutable, isSame, nullSafeGet, nullSafeGet, nullSafeSet, nullSafeSet, replace, replace, resolve, semiResolve, setPropertyValues, sqlTypes, toColumnNullness, toLoggableString
-
从类继承的方法 org.hibernate.type.AbstractType
beforeAssemble, getSemiResolvedType, isAnyType, isAssociationType, isCollectionType, isEntityType
-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 org.hibernate.type.Type
beforeAssemble, getSemiResolvedType, isAnyType, isAssociationType, isCollectionType, isEntityType, resolve
-
-
-
-
构造器详细资料
-
EmbeddedComponentType
@Deprecated public EmbeddedComponentType(TypeFactory.TypeScope typeScope, ComponentMetamodel metamodel)
已过时。Use the other constructor
-
EmbeddedComponentType
public EmbeddedComponentType(ComponentMetamodel metamodel)
-
-
方法详细资料
-
isEmbedded
public boolean isEmbedded()
从接口复制的说明:CompositeTypeIs this component embedded? "embedded" indicates that the component is "virtual", that its properties are "flattened" onto its owner- 指定者:
isEmbedded在接口中CompositeType- 覆盖:
isEmbedded在类中ComponentType- 返回:
- True if this component is embedded; false otherwise.
-
isMethodOf
public boolean isMethodOf(Method method)
从接口复制的说明:CompositeTypeIs the given method a member of this component's class?- 指定者:
isMethodOf在接口中CompositeType- 覆盖:
isMethodOf在类中ComponentType- 参数:
method- The method to check- 返回:
- True if the method is a member; false otherwise.
-
instantiate
public Object instantiate(Object parent, SharedSessionContractImplementor session) throws HibernateException
- 覆盖:
instantiate在类中ComponentType- 抛出:
HibernateException
-
-