public enum FetchMode extends Enum<FetchMode>
Criteria.setFetchMode(java.lang.String, FetchMode)
Enum Constant and Description |
---|
DEFAULT
Default to the setting configured in the mapping file.
|
JOIN
Fetch using an outer join.
|
SELECT
Fetch eagerly, using a separate select.
|
Modifier and Type | Field and Description |
---|---|
static FetchMode |
EAGER
Deprecated.
use FetchMode.JOIN
|
static FetchMode |
LAZY
Deprecated.
use FetchMode.SELECT
|
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 DEFAULT
public static final FetchMode JOIN
public static final FetchMode SELECT
@Deprecated public static final FetchMode LAZY
@Deprecated public static final FetchMode EAGER
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 © 2019 JBoss by Red Hat. All rights reserved.