public enum ExplainVerbosity extends java.lang.Enum<ExplainVerbosity>
Enum Constant and Description |
---|
ALL_PLANS_EXECUTIONS
Runs the query optimizer and chooses the winning plan, but then runs all generated plans to completion.
|
EXECUTION_STATS
Runs the query optimizer, and then runs the winning plan to completion.
|
QUERY_PLANNER
Runs the query planner and chooses the winning plan, but does not actually execute it.
|
Modifier and Type | Method and Description |
---|---|
static ExplainVerbosity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExplainVerbosity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExplainVerbosity QUERY_PLANNER
public static final ExplainVerbosity EXECUTION_STATS
public static final ExplainVerbosity ALL_PLANS_EXECUTIONS
public static ExplainVerbosity[] values()
for (ExplainVerbosity c : ExplainVerbosity.values()) System.out.println(c);
public static ExplainVerbosity valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null