public static enum FetchOptions.FetchMode extends Enum<FetchOptions.FetchMode>
Enum Constant and Description |
---|
EAGER
With eager mode all results are loaded as
soon as the query is performed; this results
in a larger initial transfer of entries but no
remote operations during iteration of the resultset.
|
LAZY
With lazy loading the entries are not loaded
until each one is specifically requested.
|
Modifier and Type | Method and Description |
---|---|
static FetchOptions.FetchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FetchOptions.FetchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FetchOptions.FetchMode EAGER
public static final FetchOptions.FetchMode LAZY
public static FetchOptions.FetchMode[] values()
for (FetchOptions.FetchMode c : FetchOptions.FetchMode.values()) System.out.println(c);
public static FetchOptions.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 © 2020 JBoss, a division of Red Hat. All rights reserved.