public enum TaskType extends Enum<TaskType> implements IAEnum
| Enum Constant and Description |
|---|
AUTO_DISCOVERY |
COLUMN_ANALYSIS |
CROSS_DOMAIN_ANALYSIS |
DATA_QUALITY_ANALYSIS |
DATA_RULE |
METRIC |
MULTI_COLUMN_PK_ANALYSIS |
REFERENTIAL_INTEGRITY_ANALYSIS |
TASK_SEQUENCE |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static TaskType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskType COLUMN_ANALYSIS
public static final TaskType DATA_RULE
public static final TaskType METRIC
public static final TaskType MULTI_COLUMN_PK_ANALYSIS
public static final TaskType CROSS_DOMAIN_ANALYSIS
public static final TaskType REFERENTIAL_INTEGRITY_ANALYSIS
public static final TaskType TASK_SEQUENCE
public static final TaskType DATA_QUALITY_ANALYSIS
public static final TaskType AUTO_DISCOVERY
public static TaskType[] values()
for (TaskType c : TaskType.values()) System.out.println(c);
public static TaskType 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 © 2018–2020 ODPi. All rights reserved.