public enum QueryResultStoringType extends Enum<QueryResultStoringType> implements Serializable
Enum Constant and Description |
---|
FULL_CACHED
The result of the query is fully cached.
|
NOT_CACHED
The result of the query in not cached
|
PARTIAL_CACHED
The result of the query in partially cached (only some of the query-elements are cached)
|
Modifier and Type | Method and Description |
---|---|
static QueryResultStoringType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryResultStoringType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryResultStoringType FULL_CACHED
public static final QueryResultStoringType NOT_CACHED
public static final QueryResultStoringType PARTIAL_CACHED
public static QueryResultStoringType[] values()
for (QueryResultStoringType c : QueryResultStoringType.values()) System.out.println(c);
public static QueryResultStoringType 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 null Documentation Feedback
Copyright 2011 - 2018 Micro Focus or one of its affiliates.