接口 EntityIdentifierDescription
-
- 所有已知子接口:
ExpandingEntityIdentifierDescription
- 所有已知实现类:
AbstractCompositeEntityIdentifierDescription,EncapsulatedEntityIdentifierDescription,NonEncapsulatedEntityIdentifierDescription,SimpleEntityIdentifierDescriptionImpl
public interface EntityIdentifierDescriptionDescriptor for the identifier of an entity as a FetchSource (which allows for key-many-to-one handling).- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 booleanhasBidirectionalEntityReferences()Can this EntityIdentifierDescription be treated as a FetchSource and if so does it have any bidirectional entity references?booleanhasFetches()Can this EntityIdentifierDescription be treated as a FetchSource and if so does it have any fetches?
-
-
-
方法详细资料
-
hasFetches
boolean hasFetches()
Can this EntityIdentifierDescription be treated as a FetchSource and if so does it have any fetches?- 返回:
trueiffthiscan be cast toFetchSourceand (after casting) it returns non-empty results forFetchSource.getFetches()
-
hasBidirectionalEntityReferences
boolean hasBidirectionalEntityReferences()
Can this EntityIdentifierDescription be treated as a FetchSource and if so does it have any bidirectional entity references?- 返回:
trueiffthiscan be cast toFetchSourceand (after casting) it returns non-empty results forFetchSource.getBidirectionalEntityReferences()
-
-