public static enum ReadContext.QueryAnalyzeMode extends Enum<ReadContext.QueryAnalyzeMode>
ReadContext.analyzeQuery(Statement,QueryAnalyzeMode)
.Enum Constant and Description |
---|
PLAN
Retrieves only the query plan information.
|
PROFILE
Retrieves both query plan and query execution statistics along with the result data.
|
Modifier and Type | Method and Description |
---|---|
static ReadContext.QueryAnalyzeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReadContext.QueryAnalyzeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadContext.QueryAnalyzeMode PLAN
public static final ReadContext.QueryAnalyzeMode PROFILE
public static ReadContext.QueryAnalyzeMode[] values()
for (ReadContext.QueryAnalyzeMode c : ReadContext.QueryAnalyzeMode.values()) System.out.println(c);
public static ReadContext.QueryAnalyzeMode 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 Google LLC. All rights reserved.