Uses of Enum Class
org.hibernate.FetchMethod
Packages that use FetchMethod
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session and StatelessSession,
the most important APIs exposing persistence-related operations for
entities.This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
-
Uses of FetchMethod in org.hibernate
Subclasses with type arguments of type FetchMethod in org.hibernateModifier and TypeClassDescriptionenumEnumerates methods for fetching an association from the database, allowing a fetching method to be specified as aFetchOptionof an attribute node of an entity graph.Methods in org.hibernate that return FetchMethodModifier and TypeMethodDescriptionstatic FetchMethodReturns the enum constant of this class with the specified name.static FetchMethod[]FetchMethod.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of FetchMethod in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return FetchMethodModifier and TypeMethodDescriptionFetchOptions.fetchMethod()Returns the value of thefetchMethodrecord component.Methods in org.hibernate.engine.spi with parameters of type FetchMethodModifier and TypeMethodDescriptionstatic FetchOptionsFetchOptions.of(CacheStoreMode cacheStoreMode, CacheRetrieveMode cacheRetrieveMode, Integer batchSize, FetchMethod fetchMethod) Constructors in org.hibernate.engine.spi with parameters of type FetchMethodModifierConstructorDescriptionFetchOptions(CacheStoreMode cacheStoreMode, CacheRetrieveMode cacheRetrieveMode, Integer batchSize, FetchMethod fetchMethod) Creates an instance of aFetchOptionsrecord class.