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 ofSession
andStatelessSession
, 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.boot.model.internal org.hibernate.id This package and its subpackages, especiallyorg.hibernate.id.enhanced
, contain the built-in id generators, all of which implement eitherIdentifierGenerator
orPostInsertIdentifierGenerator
.org.hibernate.mapping This package defines the Hibernate configuration-time mapping model.org.hibernate.metamodel.mapping.internal 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 HibernateType
is 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 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. -
Uses of FetchMode in org.hibernate.annotations
Methods in org.hibernate.annotations that return FetchMode Modifier and Type Method Description FetchMode
FetchMode. getHibernateFetchMode()
-
Uses of FetchMode in org.hibernate.boot.model.internal
Methods in org.hibernate.boot.model.internal that return FetchMode Modifier and Type Method Description static FetchMode
BinderHelper. getFetchMode(FetchType fetch)
-
Uses of FetchMode in org.hibernate.id
Methods in org.hibernate.id that return FetchMode Modifier and Type Method Description FetchMode
ExportableColumn.ValueImpl. getFetchMode()
-
Uses of FetchMode in org.hibernate.mapping
Methods in org.hibernate.mapping that return FetchMode Modifier and Type Method Description FetchMode
Collection. getFetchMode()
FetchMode
Fetchable. getFetchMode()
FetchMode
OneToMany. getFetchMode()
FetchMode
SimpleValue. getFetchMode()
FetchMode
ToOne. getFetchMode()
FetchMode
Value. getFetchMode()
Methods in org.hibernate.mapping with parameters of type FetchMode Modifier and Type Method Description void
Collection. setFetchMode(FetchMode fetchMode)
void
Fetchable. setFetchMode(FetchMode joinedFetch)
void
ToOne. setFetchMode(FetchMode fetchMode)
-
Uses of FetchMode in org.hibernate.metamodel.mapping.internal
Methods in org.hibernate.metamodel.mapping.internal with parameters of type FetchMode Modifier and Type Method Description static PluralAttributeMapping
MappingModelCreationHelper. buildPluralAttributeMapping(String attrName, int stateArrayPosition, int fetchableIndex, Property bootProperty, ManagedMappingType declaringType, PropertyAccess propertyAccess, CascadeStyle cascadeStyle, FetchMode fetchMode, MappingModelCreationProcess creationProcess)
static PluralAttributeMapping
MappingModelCreationHelper. buildPluralAttributeMapping(String attrName, int stateArrayPosition, int fetchableIndex, Property bootProperty, ManagedMappingType declaringType, PropertyAccess propertyAccess, CascadeStyle cascadeStyle, FetchMode fetchMode, MappingModelCreationProcess creationProcess, Function<PluralAttributeMappingImpl,PluralAttributeMappingImpl> mappingConverter)
For Hibernate Reactivestatic FetchStyle
FetchOptionsHelper. determineFetchStyleByMetadata(FetchMode mappingFetchMode, AssociationType type, SessionFactoryImplementor sessionFactory)
-
Uses of FetchMode in org.hibernate.persister.collection
Methods in org.hibernate.persister.collection that return FetchMode Modifier and Type Method Description FetchMode
AbstractCollectionPersister. getFetchMode()
FetchMode
QueryableCollection. 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 FetchMode
AbstractEntityPersister. getFetchMode(int i)
FetchMode
OuterJoinLoadable. 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 AttributeMapping
AbstractEntityPersister. buildPluralAttributeMapping(String attrName, int stateArrayPosition, int fetchableIndex, Property bootProperty, ManagedMappingType declaringType, PropertyAccess propertyAccess, CascadeStyle cascadeStyle, FetchMode fetchMode, 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 FetchMode
AbstractNonIdentifierAttribute. getFetchMode()
Deprecated, for removal: This API element is subject to removal in a future version.FetchMode
BaselineAttributeInformation. getFetchMode()
Deprecated, for removal: This API element is subject to removal in a future version.FetchMode
NonIdentifierAttribute. 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.Builder
BaselineAttributeInformation.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 FetchMode
AnyType. getFetchMode(int i)
FetchMode
ComponentType. getFetchMode(int i)
FetchMode
CompositeType. getFetchMode(int index)
Retrieve the fetch mode of the indicated component property.
-