|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<FetchStyle> org.hibernate.engine.FetchStyle
public enum FetchStyle
Enumeration of values describing HOW fetching should occur.
FetchTiming
Enum Constant Summary | |
---|---|
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. |
|
JOIN
Inherently an eager style of fetching. |
|
SELECT
Performs a separate SQL select to load the indicated data. |
|
SUBSELECT
Performs fetching of associated data (currently limited to only collections) based on the sql restriction used to load the owner. |
Method Summary | |
---|---|
static FetchStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FetchStyle[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FetchStyle SELECT
public static final FetchStyle JOIN
public static final FetchStyle BATCH
public static final FetchStyle SUBSELECT
Method Detail |
---|
public static FetchStyle[] values()
for (FetchStyle c : FetchStyle.values()) System.out.println(c);
public static FetchStyle valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |