public static enum ExplainType.Type extends Enum<ExplainType.Type>
| Enum Constant and Description |
|---|
DISTRIBUTED |
IO |
LOGICAL |
VALIDATE |
| Modifier and Type | Method and Description |
|---|---|
static ExplainType.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExplainType.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExplainType.Type LOGICAL
public static final ExplainType.Type DISTRIBUTED
public static final ExplainType.Type VALIDATE
public static final ExplainType.Type IO
public static ExplainType.Type[] values()
for (ExplainType.Type c : ExplainType.Type.values()) System.out.println(c);
public static ExplainType.Type 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–2023. All rights reserved.