| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<SqlExplainLevel>
org.eigenbase.sql.SqlExplainLevel
public enum SqlExplainLevel
SqlExplainLevel defines detail levels for EXPLAIN PLAN.
| Enum Constant Summary | |
|---|---|
| ALL_ATTRIBUTESDisplay all attributes, including cost. | |
| DIGEST_ATTRIBUTESDisplay only attributes which contribute to an expression's digest. | |
| EXPPLAN_ATTRIBUTESDisplay only attributes which contribute to the plan output. | |
| NO_ATTRIBUTESSuppress all attributes. | |
| Method Summary | |
|---|---|
| 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're declared. | 
| Methods inherited from class java.lang.Enum | 
|---|
| clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf | 
| Methods inherited from class java.lang.Object | 
|---|
| finalize, getClass, notify, notifyAll, wait, wait, wait | 
| Methods inherited from interface org.eigenbase.sql.SqlLiteral.SqlSymbol | 
|---|
| name, ordinal | 
| Enum Constant Detail | 
|---|
public static final SqlExplainLevel NO_ATTRIBUTES
public static final SqlExplainLevel EXPPLAN_ATTRIBUTES
public static final SqlExplainLevel DIGEST_ATTRIBUTES
public static final SqlExplainLevel ALL_ATTRIBUTES
| Method Detail | 
|---|
public static final 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 name| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||