接口 IdentifiableTypeSource
-
- 所有已知实现类:
AbstractEntitySourceImpl,JoinedSubclassEntitySourceImpl,RootEntitySourceImpl,SubclassEntitySourceImpl
public interface IdentifiableTypeSource extends AttributeSourceContainer
Common contract between Entity and MappedSuperclass sources. The terminology is taken from JPA'sIdentifiableType- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 EntityHierarchySourcegetHierarchy()Get the hierarchy this belongs to.List<JpaCallbackSource>getJpaCallbackClasses()Access to the sources describing JPA lifecycle callbacks.LocalMetadataBuildingContextgetLocalMetadataBuildingContext()Obtain the metadata-building context local to this entity source.OrigingetOrigin()Obtain the origin of this source.Collection<IdentifiableTypeSource>getSubTypes()Access the subtype sources for types extending from this type source,IdentifiableTypeSourcegetSuperType()StringgetTypeName()Get the name of this type.-
从接口继承的方法 org.hibernate.boot.model.source.spi.AttributeSourceContainer
attributeSources, getAttributePathBase, getAttributeRoleBase
-
从接口继承的方法 org.hibernate.boot.model.source.spi.ToolingHintContextContainer
getToolingHintContext
-
-
-
-
方法详细资料
-
getOrigin
Origin getOrigin()
Obtain the origin of this source.- 返回:
- The origin of this source.
-
getHierarchy
EntityHierarchySource getHierarchy()
Get the hierarchy this belongs to.- 返回:
- The hierarchy this belongs to.
-
getLocalMetadataBuildingContext
LocalMetadataBuildingContext getLocalMetadataBuildingContext()
Obtain the metadata-building context local to this entity source.- 指定者:
getLocalMetadataBuildingContext在接口中AttributeSourceContainer- 返回:
- The local binding context
-
getTypeName
String getTypeName()
Get the name of this type.- 返回:
- The name of this type.
-
getSuperType
IdentifiableTypeSource getSuperType()
-
getSubTypes
Collection<IdentifiableTypeSource> getSubTypes()
Access the subtype sources for types extending from this type source,- 返回:
- Sub-type sources
-
getJpaCallbackClasses
List<JpaCallbackSource> getJpaCallbackClasses()
Access to the sources describing JPA lifecycle callbacks.- 返回:
- JPA lifecycle callback sources
-
-