Uses of Class
org.hibernate.FetchMode
-
Packages that use FetchMode Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory, which represents an instance of Hibernate at runtime and is the source of new instances ofSessionandStatelessSession, the most important APIs exposing persistence-related operations for entities.org.hibernate.annotations A set of mapping annotations which extend the O/R mapping annotations defined by JPA.org.hibernate.id This package and its subpackages, especiallyorg.hibernate.id.enhanced, contain the built-in id generators, all of which implement eitherIdentifierGeneratororPostInsertIdentifierGenerator.org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.persister.collection This package abstracts persistence mechanisms for collections.org.hibernate.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.tuple Most contracts here have been replaced by the new runtime mapping model.org.hibernate.type A HibernateTypeis a strategy for mapping a Java property type to a JDBC type or types. -
-
Uses of FetchMode in org.hibernate
Methods in org.hibernate that return FetchMode Modifier and Type Method Description static FetchModeFetchMode. 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. -
Uses of FetchMode in org.hibernate.annotations
Methods in org.hibernate.annotations that return FetchMode Modifier and Type Method Description FetchModeFetchMode. getHibernateFetchMode() -
Uses of FetchMode in org.hibernate.id
Methods in org.hibernate.id that return FetchMode Modifier and Type Method Description FetchModeExportableColumn.ValueImpl. getFetchMode() -
Uses of FetchMode in org.hibernate.mapping
Methods in org.hibernate.mapping that return FetchMode Modifier and Type Method Description FetchModeCollection. getFetchMode()FetchModeFetchable. getFetchMode()FetchModeOneToMany. getFetchMode()FetchModeSimpleValue. getFetchMode()FetchModeToOne. getFetchMode()FetchModeValue. getFetchMode()Methods in org.hibernate.mapping with parameters of type FetchMode Modifier and Type Method Description voidCollection. setFetchMode(FetchMode fetchMode)voidFetchable. setFetchMode(FetchMode joinedFetch)voidToOne. setFetchMode(FetchMode fetchMode) -
Uses of FetchMode in org.hibernate.persister.collection
Methods in org.hibernate.persister.collection that return FetchMode Modifier and Type Method Description FetchModeAbstractCollectionPersister. getFetchMode()FetchModeQueryableCollection. getFetchMode()Deprecated, for removal: This API element is subject to removal in a future version.Should we load this collection role by outerjoining? -
Uses of FetchMode in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return FetchMode Modifier and Type Method Description FetchModeAbstractEntityPersister. getFetchMode(int i)FetchModeOuterJoinLoadable. getFetchMode(int i)Deprecated, for removal: This API element is subject to removal in a future version.May this (subclass closure) property be fetched using an SQL outerjoin?Methods in org.hibernate.persister.entity with parameters of type FetchMode Modifier and Type Method Description protected AttributeMappingAbstractEntityPersister. buildPluralAttributeMapping(String attrName, int stateArrayPosition, int fetchableIndex, Property bootProperty, ManagedMappingType declaringType, PropertyAccess propertyAccess, CascadeStyle cascadeStyle, FetchMode fetchMode, org.hibernate.metamodel.mapping.internal.MappingModelCreationProcess creationProcess)For Hibernate Reactive -
Uses of FetchMode in org.hibernate.tuple
Methods in org.hibernate.tuple that return FetchMode Modifier and Type Method Description FetchModeAbstractNonIdentifierAttribute. getFetchMode()Deprecated, for removal: This API element is subject to removal in a future version.FetchModeBaselineAttributeInformation. getFetchMode()Deprecated, for removal: This API element is subject to removal in a future version.FetchModeNonIdentifierAttribute. getFetchMode()Deprecated, for removal: This API element is subject to removal in a future version.Methods in org.hibernate.tuple with parameters of type FetchMode Modifier and Type Method Description BaselineAttributeInformation.BuilderBaselineAttributeInformation.Builder. setFetchMode(FetchMode fetchMode)Constructors in org.hibernate.tuple with parameters of type FetchMode Constructor Description BaselineAttributeInformation(boolean lazy, boolean insertable, boolean updateable, boolean nullable, boolean dirtyCheckable, boolean versionable, CascadeStyle cascadeStyle, FetchMode fetchMode)Deprecated, for removal: This API element is subject to removal in a future version.StandardProperty(String name, Type type, boolean lazy, boolean insertable, boolean updateable, boolean nullable, boolean checkable, boolean versionable, CascadeStyle cascadeStyle, FetchMode fetchMode)Deprecated, for removal: This API element is subject to removal in a future version.Constructs NonIdentifierProperty instances. -
Uses of FetchMode in org.hibernate.type
Methods in org.hibernate.type that return FetchMode Modifier and Type Method Description FetchModeAnyType. getFetchMode(int i)FetchModeComponentType. getFetchMode(int i)FetchModeCompositeType. getFetchMode(int index)Retrieve the fetch mode of the indicated component property.
-