类的使用
org.hibernate.FetchMode
-
使用FetchMode的程序包 程序包 说明 org.hibernate This package defines the central Hibernate APIs.org.hibernate.cfg This package defines APIs for configuring Hibernate, and classes for building the Hibernate configuration-time metamodel.org.hibernate.criterion A framework for defining restriction criteria and order criteria.org.hibernate.id This package contains internal implementation classes for the main API interfaces.org.hibernate.internal An internal package containing mostly implementations of central Hibernate APIs.org.hibernate.loader This package defines functionality for processing JDBC result sets and returning complex graphs of persistent objects.org.hibernate.loader.collection This package defines collection initializersorg.hibernate.loader.criteria This package defines the criteria query compiler and loaderorg.hibernate.loader.entity This package defines entity loadersorg.hibernate.mapping This package defines the Hibernate configuration-time metamodel.org.hibernate.persister.collection This package abstracts the persistence mechanism for collections.org.hibernate.persister.entity This package abstracts persistence mechanisms for entities, and defines the Hibernate runtime metamodel.org.hibernate.persister.walking.internal org.hibernate.tuple This package defines a runtime metamodel for entities at the object level and abstracts the differences between the various entity modes.org.hibernate.tuple.component org.hibernate.type A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types. -
-
org.hibernate中FetchMode的使用
声明为FetchMode的org.hibernate中的字段 修饰符和类型 字段 说明 static FetchModeFetchMode. EAGER已过时。use FetchMode.JOINstatic FetchModeFetchMode. LAZY已过时。use FetchMode.SELECT返回FetchMode的org.hibernate中的方法 修饰符和类型 方法 说明 static FetchModeFetchMode. valueOf(String name)返回带有指定名称的该类型的枚举常量。static FetchMode[]FetchMode. values()按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。参数类型为FetchMode的org.hibernate中的方法 修饰符和类型 方法 说明 CriteriaCriteria. setFetchMode(String associationPath, FetchMode mode)Specify an association fetching strategy for an association or a collection of values. -
org.hibernate.cfg中FetchMode的使用
返回FetchMode的org.hibernate.cfg中的方法 修饰符和类型 方法 说明 static FetchModeAnnotationBinder. getFetchMode(javax.persistence.FetchType fetch) -
org.hibernate.criterion中FetchMode的使用
参数类型为FetchMode的org.hibernate.criterion中的方法 修饰符和类型 方法 说明 DetachedCriteriaDetachedCriteria. setFetchMode(String associationPath, FetchMode mode)Set the fetch mode for a given association -
org.hibernate.id中FetchMode的使用
返回FetchMode的org.hibernate.id中的方法 修饰符和类型 方法 说明 FetchModeExportableColumn.ValueImpl. getFetchMode() -
org.hibernate.internal中FetchMode的使用
返回FetchMode的org.hibernate.internal中的方法 修饰符和类型 方法 说明 FetchModeCriteriaImpl. getFetchMode(String path)参数类型为FetchMode的org.hibernate.internal中的方法 修饰符和类型 方法 说明 CriteriaCriteriaImpl. setFetchMode(String associationPath, FetchMode mode)CriteriaCriteriaImpl.Subcriteria. setFetchMode(String associationPath, FetchMode mode) -
org.hibernate.loader中FetchMode的使用
参数类型为FetchMode的org.hibernate.loader中的方法 修饰符和类型 方法 说明 protected JoinTypeJoinWalker. getJoinType(OuterJoinLoadable persister, PropertyPath path, int propertyNumber, AssociationType associationType, FetchMode metadataFetchMode, CascadeStyle metadataCascadeStyle, String lhsTable, String[] lhsColumns, boolean nullable, int currentDepth)Determine the appropriate type of join (if any) to use to fetch the given association.protected JoinTypeJoinWalker. getJoinType(AssociationType associationType, FetchMode config, PropertyPath path, String lhsTable, String[] lhsColumns, boolean nullable, int currentDepth, CascadeStyle cascadeStyle)Determine the appropriate associationType of join (if any) to use to fetch the given association.protected booleanAbstractEntityJoinWalker. isJoinedFetchEnabled(AssociationType type, FetchMode config, CascadeStyle cascadeStyle)The superclass deliberately excludes collectionsprotected booleanJoinWalker. isJoinedFetchEnabled(AssociationType type, FetchMode config, CascadeStyle cascadeStyle)Override on subclasses to enable or suppress joining of certain association typesprotected booleanJoinWalker. isJoinedFetchEnabledInMapping(FetchMode config, AssociationType type)Does the mapping, and Hibernate default semantics, specify that this association should be fetched by outer joining -
org.hibernate.loader.collection中FetchMode的使用
参数类型为FetchMode的org.hibernate.loader.collection中的方法 修饰符和类型 方法 说明 protected JoinTypeBasicCollectionJoinWalker. getJoinType(OuterJoinLoadable persister, PropertyPath path, int propertyNumber, AssociationType associationType, FetchMode metadataFetchMode, CascadeStyle metadataCascadeStyle, String lhsTable, String[] lhsColumns, boolean nullable, int currentDepth) -
org.hibernate.loader.criteria中FetchMode的使用
参数类型为FetchMode的org.hibernate.loader.criteria中的方法 修饰符和类型 方法 说明 protected JoinTypeCriteriaJoinWalker. getJoinType(OuterJoinLoadable persister, PropertyPath path, int propertyNumber, AssociationType associationType, FetchMode metadataFetchMode, CascadeStyle metadataCascadeStyle, String lhsTable, String[] lhsColumns, boolean nullable, int currentDepth)protected JoinTypeCriteriaJoinWalker. getJoinType(AssociationType associationType, FetchMode config, PropertyPath path, String lhsTable, String[] lhsColumns, boolean nullable, int currentDepth, CascadeStyle cascadeStyle) -
org.hibernate.loader.entity中FetchMode的使用
参数类型为FetchMode的org.hibernate.loader.entity中的方法 修饰符和类型 方法 说明 protected JoinTypeEntityJoinWalker. getJoinType(OuterJoinLoadable persister, PropertyPath path, int propertyNumber, AssociationType associationType, FetchMode metadataFetchMode, CascadeStyle metadataCascadeStyle, String lhsTable, String[] lhsColumns, boolean nullable, int currentDepth)protected booleanCascadeEntityJoinWalker. isJoinedFetchEnabled(AssociationType type, FetchMode config, CascadeStyle cascadeStyle) -
org.hibernate.mapping中FetchMode的使用
返回FetchMode的org.hibernate.mapping中的方法 修饰符和类型 方法 说明 FetchModeCollection. getFetchMode()FetchModeFetchable. getFetchMode()FetchModeOneToMany. getFetchMode()FetchModeSimpleValue. getFetchMode()FetchModeToOne. getFetchMode()FetchModeValue. getFetchMode()参数类型为FetchMode的org.hibernate.mapping中的方法 修饰符和类型 方法 说明 voidCollection. setFetchMode(FetchMode fetchMode)voidFetchable. setFetchMode(FetchMode joinedFetch)voidToOne. setFetchMode(FetchMode fetchMode) -
org.hibernate.persister.collection中FetchMode的使用
返回FetchMode的org.hibernate.persister.collection中的方法 修饰符和类型 方法 说明 FetchModeAbstractCollectionPersister. getFetchMode()FetchModeQueryableCollection. getFetchMode()Should we load this collection role by outerjoining? -
org.hibernate.persister.entity中FetchMode的使用
返回FetchMode的org.hibernate.persister.entity中的方法 修饰符和类型 方法 说明 FetchModeAbstractEntityPersister. getFetchMode(int i)FetchModeOuterJoinLoadable. getFetchMode(int i)May this (subclass closure) property be fetched using an SQL outerjoin? -
org.hibernate.persister.walking.internal中FetchMode的使用
参数类型为FetchMode的org.hibernate.persister.walking.internal中的方法 修饰符和类型 方法 说明 static FetchStyleFetchStrategyHelper. determineFetchStyleByMetadata(FetchMode mappingFetchMode, AssociationType type, SessionFactoryImplementor sessionFactory) -
org.hibernate.tuple中FetchMode的使用
返回FetchMode的org.hibernate.tuple中的方法 修饰符和类型 方法 说明 FetchModeAbstractNonIdentifierAttribute. getFetchMode()FetchModeBaselineAttributeInformation. getFetchMode()FetchModeNonIdentifierAttribute. getFetchMode()参数类型为FetchMode的org.hibernate.tuple中的方法 修饰符和类型 方法 说明 BaselineAttributeInformation.BuilderBaselineAttributeInformation.Builder. setFetchMode(FetchMode fetchMode)参数类型为FetchMode的org.hibernate.tuple中的构造器 构造器 说明 BaselineAttributeInformation(boolean lazy, boolean insertable, boolean updateable, ValueGeneration valueGenerationStrategy, boolean nullable, boolean dirtyCheckable, boolean versionable, CascadeStyle cascadeStyle, FetchMode fetchMode)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.component中FetchMode的使用
参数类型为FetchMode的org.hibernate.tuple.component中的方法 修饰符和类型 方法 说明 protected FetchStyleCompositeBasedAssociationAttribute. determineFetchStyleByMetadata(FetchMode fetchMode, AssociationType type) -
org.hibernate.type中FetchMode的使用
返回FetchMode的org.hibernate.type中的方法 修饰符和类型 方法 说明 FetchModeAnyType. getFetchMode(int i)FetchModeComponentType. getFetchMode(int i)FetchModeCompositeCustomType. getFetchMode(int i)FetchModeCompositeType. getFetchMode(int index)Retrieve the fetch mode of the indicated component property.
-