public enum FetchMode extends Enum<FetchMode>
FetchType
 focuses on the "when".| Enum Constant and Description | 
|---|
JOIN
use an outer join to load the related entities, collections or joins. 
 | 
SELECT
use a select for each individual entity, collection, or join load. 
 | 
SUBSELECT
use a subselect query to load the additional collections. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static FetchMode | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static FetchMode[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final FetchMode SELECT
public static final FetchMode JOIN
public static final FetchMode SUBSELECT
public static FetchMode[] values()
for (FetchMode c : FetchMode.values()) System.out.println(c);
public static FetchMode 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.