Enum OperationType
- All Implemented Interfaces:
- Serializable,- Comparable<OperationType>,- java.lang.constant.Constable
- See Also:
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionFlag for build phase events.Flag for file download progress events.Flag for operations with no specific type.Flag for problem events.Flag for project configuration operation progress events.Flag for the topmost progress event.Flag for task operation progress events.Flag for test operation progress events.Flag for test metadata events.Flag for test output operation progress events.Flag for transform operation progress events.Flag for work item operation progress events.
- 
Method SummaryModifier and TypeMethodDescriptionstatic OperationTypeReturns 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.
- 
Enum Constant Details- 
TESTFlag for test operation progress events.The following events are currently issued for this operation type. 
- 
TASKFlag for task operation progress events.The following events are currently issued for this operation type. 
- 
GENERICFlag for operations with no specific type.The following events are currently issued for this operation type. 
- 
WORK_ITEMFlag for work item operation progress events.The following events are currently issued for this operation type. - Since:
- 5.1
 
- 
PROJECT_CONFIGURATIONFlag for project configuration operation progress events.The following events are currently issued for this operation type. - Since:
- 5.1
 
- 
TRANSFORMFlag for transform operation progress events.The following events are currently issued for this operation type. - Since:
- 5.1
 
- 
TEST_OUTPUTFlag for test output operation progress events.Clients must subscribe to The following events are currently issued for this operation type.TESTevents too if they want to receive test output events.- Since:
- 6.0
 
- 
TEST_METADATAFlag for test metadata events.Clients must subscribe to The following events are currently issued for this operation type.TESTevents too if they want to receive test metadata events.- Since:
- 8.13
 
- 
FILE_DOWNLOADFlag for file download progress events. This includes various types of files, for example files downloaded during dependency resolution, Gradle distribution downloads, and Java toolchain downloads.The following events are currently issued for this operation type. - Since:
- 7.3
 
- 
BUILD_PHASEFlag for build phase events.The following events are currently issued for this operation type. - Since:
- 7.6
 
- 
PROBLEMSFlag for problem events.The following events are currently issued for this operation type. - Since:
- 8.4
 
- 
ROOTFlag for the topmost progress event.Using this operation type is useful for capturing the build failure details from the finish event. The following events are currently issued for this operation type. - Since:
- 8.12
 
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-