public enum SqlExplainFormat extends Enum<SqlExplainFormat> implements Symbolizable
EXPLAIN PLAN statement.| Enum Constant and Description |
|---|
DOT
Indicates that the plan should be output in dot format.
|
JSON
Indicates that the plan should be output in JSON format.
|
TEXT
Indicates that the plan should be output as a piece of indented text.
|
XML
Indicates that the plan should be output in XML format.
|
| Modifier and Type | Method and Description |
|---|---|
static SqlExplainFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlExplainFormat[] |
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 SqlExplainFormat TEXT
public static final SqlExplainFormat XML
public static final SqlExplainFormat JSON
public static final SqlExplainFormat DOT
public static SqlExplainFormat[] values()
for (SqlExplainFormat c : SqlExplainFormat.values()) System.out.println(c);
public static SqlExplainFormat 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.