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.
|
TEST_OUTPUT |
Flag for test output 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
The following events are currently issued for this operation type.
public static final OperationType TASK
The following events are currently issued for this operation type.
public static final OperationType GENERIC
The following events are currently issued for this operation type.
public static final OperationType WORK_ITEM
The following events are currently issued for this operation type.
public static final OperationType PROJECT_CONFIGURATION
The following events are currently issued for this operation type.
public static final OperationType TRANSFORM
The following events are currently issued for this operation type.
@Incubating public static final OperationType TEST_OUTPUT
Clients must subscribe to TEST
events too if they want to receive test output events.
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