Serializable, Comparable<ExplainVerbosity>public enum ExplainVerbosity extends Enum<ExplainVerbosity>
| Enum Constant | 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 | Description |
|---|---|---|
static ExplainVerbosity |
valueOf(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(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