|
Infinispan Distribution 5.2.6.Final-redhat-2 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FetchOptions.FetchMode>
org.infinispan.query.FetchOptions.FetchMode
public static enum FetchOptions.FetchMode
Specifies the fetching strategy for query results.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FetchOptions.FetchMode EAGER
public static final FetchOptions.FetchMode LAZY
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
Infinispan Distribution 5.2.6.Final-redhat-2 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |