public enum FetchStyle extends Enum<FetchStyle>
FetchTiming| Enum Constant and Description | 
|---|
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. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
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. 
 | 
public static final FetchStyle SELECT
public static final FetchStyle JOIN
public static final FetchStyle BATCH
public static final FetchStyle SUBSELECT
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 nameNullPointerException - if the argument is nullCopyright © 2001-2015 Red Hat, Inc. All Rights Reserved.