Package org.hibernate.engine
Enum Class FetchStyle
- All Implemented Interfaces:
Serializable
,Comparable<FetchStyle>
,Constable
Enumeration of values describing how fetching should occur.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionInitializes a number of indicated data items (entities or collections) in a series of grouped sql selects using an in-style sql restriction to define the batch size.Inherently an eager style of fetching.Performs a separate SQL select to load the indicated data.Performs fetching of associated data (currently limited to only collections) based on the sql restriction used to load the owner. -
Method Summary
Modifier and TypeMethodDescriptionstatic FetchStyle
Returns the enum constant of this class with the specified name.static FetchStyle[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SELECT
Performs a separate SQL select to load the indicated data. This can either be eager (the second select is issued immediately) or lazy (the second select is delayed until the data is needed). -
JOIN
Inherently an eager style of fetching. The data to be fetched is obtained as part of an SQL join. -
BATCH
Initializes a number of indicated data items (entities or collections) in a series of grouped sql selects using an in-style sql restriction to define the batch size. Again, can be either eager or lazy. -
SUBSELECT
Performs fetching of associated data (currently limited to only collections) based on the sql restriction used to load the owner. Again, can be either eager or lazy.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-