public enum ComponentEnum extends Enum<ComponentEnum>
| Enum Constant and Description |
|---|
CODE_GENERATION |
EXECUTION_PLATFORM |
GLOBAL_SERVICES |
QA |
QUERY_PLANNER |
SQL_COMPILER |
SQL_PARSER |
| Modifier and Type | Method and Description |
|---|---|
static ComponentEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentEnum QA
public static final ComponentEnum GLOBAL_SERVICES
public static final ComponentEnum SQL_COMPILER
public static final ComponentEnum SQL_PARSER
public static final ComponentEnum QUERY_PLANNER
public static final ComponentEnum CODE_GENERATION
public static final ComponentEnum EXECUTION_PLATFORM
public static ComponentEnum[] values()
for (ComponentEnum c : ComponentEnum.values()) System.out.println(c);
public static ComponentEnum 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 © 2020. All rights reserved.