Serializable, Comparable<OperationType>public enum OperationType extends Enum<OperationType>
| Enum Constant | Description | 
|---|---|
| GENERIC | Flag for operations with no specific type. | 
| PROJECT_CONFIGURATION | Flag for project configuration operation progress events. | 
| TASK | Flag for task operation progress events. | 
| TEST | Flag for test operation progress events. | 
| TRANSFORM | Flag for transform operation progress events. | 
| WORK_ITEM | Flag for work item operation progress events. | 
| Modifier and Type | Method | Description | 
|---|---|---|
| static OperationType | valueOf(String name) | Returns the enum constant of this type with the specified name. | 
| static OperationType[] | values() | Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final OperationType TEST
public static final OperationType TASK
public static final OperationType GENERIC
@Incubating public static final OperationType WORK_ITEM
@Incubating public static final OperationType PROJECT_CONFIGURATION
@Incubating public static final OperationType TRANSFORM
public static OperationType[] values()
for (OperationType c : OperationType.values()) System.out.println(c);
public static OperationType 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 null