Uses of Class
org.hibernate.FetchMode
-
Packages that use FetchMode Package Description org.hibernate org.hibernate.annotations Package containing all Hibernate's specific annotations.org.hibernate.cfg org.hibernate.id org.hibernate.mapping org.hibernate.metamodel.mapping.internal org.hibernate.persister.collection org.hibernate.persister.entity org.hibernate.tuple org.hibernate.type -
-
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.cfg
Methods in org.hibernate.cfg that return FetchMode Modifier and Type Method Description static FetchMode
AnnotationBinder. getFetchMode(jakarta.persistence.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, Property bootProperty, ManagedMappingType declaringType, PropertyAccess propertyAccess, CascadeStyle cascadeStyle, FetchMode fetchMode, MappingModelCreationProcess creationProcess)
static 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()
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)
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 Modifier and Type Method Description FetchMode
AbstractNonIdentifierAttribute. getFetchMode()
FetchMode
BaselineAttributeInformation. getFetchMode()
FetchMode
NonIdentifierAttribute. getFetchMode()
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, 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)
Deprecated.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.
-