| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use 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.internal | An internal package containing mostly implementations of central Hibernate APIs of the org.hibernatepackage. | 
| 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 initializers | 
| org.hibernate.loader.criteria | This package defines the criteria query compiler and loader | 
| org.hibernate.loader.entity | This package defines entity loaders | 
| org.hibernate.mapping | This package defines the Hibernate configuration-time metamodel. | 
| org.hibernate.metamodel.binding | |
| org.hibernate.metamodel.source.annotations | |
| org.hibernate.metamodel.source.annotations.attribute | |
| org.hibernate.metamodel.source.binder | |
| org.hibernate.metamodel.source.hbm | |
| 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.tuple | This package defines a runtime metamodel for entities at the object level and abstracts the differences between the various entity modes. | 
| org.hibernate.type | A Hibernate Type is a strategy for mapping a Java property type to a JDBC type or types. | 
| Uses of FetchMode in org.hibernate | 
|---|
| Fields in org.hibernate declared as FetchMode | |
|---|---|
| static FetchMode | FetchMode.EAGERDeprecated. use FetchMode.JOIN | 
| static FetchMode | FetchMode.LAZYDeprecated. use FetchMode.SELECT | 
| Methods in org.hibernate that return FetchMode | |
|---|---|
| static FetchMode | FetchMode.valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static FetchMode[] | FetchMode.values()Returns an array containing the constants of this enum type, in the order they are declared. | 
| Methods in org.hibernate with parameters of type FetchMode | |
|---|---|
|  Criteria | Criteria.setFetchMode(String associationPath,
             FetchMode mode)Specify an association fetching strategy for an association or a collection of values. | 
| Uses of FetchMode in org.hibernate.cfg | 
|---|
| Methods in org.hibernate.cfg that return FetchMode | |
|---|---|
| static FetchMode | AnnotationBinder.getFetchMode(FetchType fetch) | 
| Uses of FetchMode in org.hibernate.criterion | 
|---|
| Methods in org.hibernate.criterion with parameters of type FetchMode | |
|---|---|
|  DetachedCriteria | DetachedCriteria.setFetchMode(String associationPath,
             FetchMode mode) | 
| Uses of FetchMode in org.hibernate.internal | 
|---|
| Methods in org.hibernate.internal that return FetchMode | |
|---|---|
|  FetchMode | CriteriaImpl.getFetchMode(String path) | 
| Methods in org.hibernate.internal with parameters of type FetchMode | |
|---|---|
|  Criteria | CriteriaImpl.setFetchMode(String associationPath,
             FetchMode mode) | 
|  Criteria | CriteriaImpl.Subcriteria.setFetchMode(String associationPath,
             FetchMode mode) | 
| Uses of FetchMode in org.hibernate.loader | 
|---|
| Methods in org.hibernate.loader with parameters of type FetchMode | |
|---|---|
| protected  JoinType | JoinWalker.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  JoinType | JoinWalker.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  boolean | AbstractEntityJoinWalker.isJoinedFetchEnabled(AssociationType type,
                     FetchMode config,
                     CascadeStyle cascadeStyle)The superclass deliberately excludes collections | 
| protected  boolean | JoinWalker.isJoinedFetchEnabled(AssociationType type,
                     FetchMode config,
                     CascadeStyle cascadeStyle)Override on subclasses to enable or suppress joining of certain association types | 
| protected  boolean | JoinWalker.isJoinedFetchEnabledInMapping(FetchMode config,
                              AssociationType type)Does the mapping, and Hibernate default semantics, specify that this association should be fetched by outer joining | 
| Uses of FetchMode in org.hibernate.loader.collection | 
|---|
| Methods in org.hibernate.loader.collection with parameters of type FetchMode | |
|---|---|
| protected  JoinType | BasicCollectionJoinWalker.getJoinType(OuterJoinLoadable persister,
            PropertyPath path,
            int propertyNumber,
            AssociationType associationType,
            FetchMode metadataFetchMode,
            CascadeStyle metadataCascadeStyle,
            String lhsTable,
            String[] lhsColumns,
            boolean nullable,
            int currentDepth) | 
| Uses of FetchMode in org.hibernate.loader.criteria | 
|---|
| Methods in org.hibernate.loader.criteria with parameters of type FetchMode | |
|---|---|
| protected  JoinType | CriteriaJoinWalker.getJoinType(AssociationType associationType,
            FetchMode config,
            PropertyPath path,
            String lhsTable,
            String[] lhsColumns,
            boolean nullable,
            int currentDepth,
            CascadeStyle cascadeStyle) | 
| protected  JoinType | CriteriaJoinWalker.getJoinType(OuterJoinLoadable persister,
            PropertyPath path,
            int propertyNumber,
            AssociationType associationType,
            FetchMode metadataFetchMode,
            CascadeStyle metadataCascadeStyle,
            String lhsTable,
            String[] lhsColumns,
            boolean nullable,
            int currentDepth) | 
| Uses of FetchMode in org.hibernate.loader.entity | 
|---|
| Methods in org.hibernate.loader.entity with parameters of type FetchMode | |
|---|---|
| protected  JoinType | EntityJoinWalker.getJoinType(OuterJoinLoadable persister,
            PropertyPath path,
            int propertyNumber,
            AssociationType associationType,
            FetchMode metadataFetchMode,
            CascadeStyle metadataCascadeStyle,
            String lhsTable,
            String[] lhsColumns,
            boolean nullable,
            int currentDepth) | 
| protected  boolean | CascadeEntityJoinWalker.isJoinedFetchEnabled(AssociationType type,
                     FetchMode config,
                     CascadeStyle cascadeStyle) | 
| Uses of FetchMode in org.hibernate.mapping | 
|---|
| Methods in org.hibernate.mapping that return FetchMode | |
|---|---|
|  FetchMode | ToOne.getFetchMode() | 
|  FetchMode | Fetchable.getFetchMode() | 
|  FetchMode | Value.getFetchMode() | 
|  FetchMode | OneToMany.getFetchMode() | 
|  FetchMode | Collection.getFetchMode() | 
|  FetchMode | SimpleValue.getFetchMode() | 
| Methods in org.hibernate.mapping with parameters of type FetchMode | |
|---|---|
|  void | ToOne.setFetchMode(FetchMode fetchMode) | 
|  void | Fetchable.setFetchMode(FetchMode joinedFetch) | 
|  void | Collection.setFetchMode(FetchMode fetchMode) | 
| Uses of FetchMode in org.hibernate.metamodel.binding | 
|---|
| Methods in org.hibernate.metamodel.binding that return FetchMode | |
|---|---|
|  FetchMode | ManyToOneAttributeBinding.getFetchMode() | 
|  FetchMode | AssociationAttributeBinding.getFetchMode()Deprecated. | 
|  FetchMode | AbstractPluralAttributeBinding.getFetchMode() | 
| Uses of FetchMode in org.hibernate.metamodel.source.annotations | 
|---|
| Methods in org.hibernate.metamodel.source.annotations that return FetchMode | |
|---|---|
| static FetchMode | EnumConversionHelper.annotationFetchModeToHibernateFetchMode(FetchMode annotationFetchMode) | 
| Uses of FetchMode in org.hibernate.metamodel.source.annotations.attribute | 
|---|
| Methods in org.hibernate.metamodel.source.annotations.attribute that return FetchMode | |
|---|---|
|  FetchMode | AssociationAttribute.getFetchMode() | 
|  FetchMode | ToOneAttributeSourceImpl.getFetchMode() | 
| Uses of FetchMode in org.hibernate.metamodel.source.binder | 
|---|
| Methods in org.hibernate.metamodel.source.binder that return FetchMode | |
|---|---|
|  FetchMode | AssociationAttributeSource.getFetchMode()Obtain the fetch mode to be applied to this association. | 
|  FetchMode | ManyToManyPluralAttributeElementSource.getFetchMode() | 
| Uses of FetchMode in org.hibernate.metamodel.source.hbm | 
|---|
| Methods in org.hibernate.metamodel.source.hbm that return FetchMode | |
|---|---|
|  FetchMode | AbstractPluralAttributeSourceImpl.getFetchMode() | 
|  FetchMode | ManyToManyPluralAttributeElementSourceImpl.getFetchMode() | 
| Uses of FetchMode in org.hibernate.persister.collection | 
|---|
| Methods in org.hibernate.persister.collection that return FetchMode | |
|---|---|
|  FetchMode | QueryableCollection.getFetchMode()Should we load this collection role by outerjoining? | 
|  FetchMode | AbstractCollectionPersister.getFetchMode() | 
| Uses of FetchMode in org.hibernate.persister.entity | 
|---|
| Methods in org.hibernate.persister.entity that return FetchMode | |
|---|---|
|  FetchMode | AbstractEntityPersister.getFetchMode(int i) | 
|  FetchMode | OuterJoinLoadable.getFetchMode(int i)May this (subclass closure) property be fetched using an SQL outerjoin? | 
| Uses of FetchMode in org.hibernate.tuple | 
|---|
| Methods in org.hibernate.tuple that return FetchMode | |
|---|---|
|  FetchMode | StandardProperty.getFetchMode() | 
| Constructors in org.hibernate.tuple with parameters of type FetchMode | |
|---|---|
| StandardProperty(String name,
                 String node,
                 Type type,
                 boolean lazy,
                 boolean insertable,
                 boolean updateable,
                 boolean insertGenerated,
                 boolean updateGenerated,
                 boolean nullable,
                 boolean checkable,
                 boolean versionable,
                 CascadeStyle cascadeStyle,
                 FetchMode fetchMode)Constructs StandardProperty instances. | |
| Uses of FetchMode in org.hibernate.type | 
|---|
| Methods in org.hibernate.type that return FetchMode | |
|---|---|
|  FetchMode | CompositeCustomType.getFetchMode(int i) | 
|  FetchMode | AnyType.getFetchMode(int i) | 
|  FetchMode | CompositeType.getFetchMode(int index)Retrieve the fetch mode of the indicated component property. | 
|  FetchMode | ComponentType.getFetchMode(int i) | 
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||