| 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(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2001-2018 Red Hat, Inc. All Rights Reserved.