Enum TaskOutputSource
- All Implemented Interfaces:
Serializable
,Comparable<TaskOutputSource>
,java.lang.constant.Constable
Defines the source contexts where the task outputs can be found.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTask outputs from a directory defined in the agent configuration.The file containing the output from the process executing the task.Task outputs from the working directory of the worker that executed the task. -
Method Summary
Modifier and TypeMethodDescriptionstatic TaskOutputSource
Returns the enum constant of this type with the specified name.static TaskOutputSource[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
WORKER_DIRECTORY
Task outputs from the working directory of the worker that executed the task. -
OTHER_DIRECTORY
Task outputs from a directory defined in the agent configuration. -
PROCESS_OUTPUT
The file containing the output from the process executing the task.
-
-
Method Details
-
values
Returns 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
-
valueOf
Returns 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 nameNullPointerException
- if the argument is null
-