public enum SqlExplainLevel extends Enum<SqlExplainLevel> implements Symbolizable
| Enum Constant and Description |
|---|
ALL_ATTRIBUTES
Display all attributes, including cost.
|
DIGEST_ATTRIBUTES
Display only attributes which contribute to an expression's digest.
|
EXPPLAN_ATTRIBUTES
Display only attributes which contribute to the plan output.
|
NO_ATTRIBUTES
Suppress all attributes.
|
NON_COST_ATTRIBUTES
Display all attributes, including id, except cost.
|
| Modifier and Type | Method and Description |
|---|---|
static SqlExplainLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlExplainLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfsymbolpublic static final SqlExplainLevel NO_ATTRIBUTES
public static final SqlExplainLevel EXPPLAN_ATTRIBUTES
public static final SqlExplainLevel DIGEST_ATTRIBUTES
public static final SqlExplainLevel NON_COST_ATTRIBUTES
public static final SqlExplainLevel ALL_ATTRIBUTES
public static SqlExplainLevel[] values()
for (SqlExplainLevel c : SqlExplainLevel.values()) System.out.println(c);
public static SqlExplainLevel 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 © 2012-2022 Apache Software Foundation. All Rights Reserved.