Enum Class ExecutionGroupStatus
java.lang.Object
java.lang.Enum<ExecutionGroupStatus>
com.atlassian.bamboo.plugins.testutils.builds.ExecutionGroupStatus
- All Implemented Interfaces:
Serializable
,Comparable<ExecutionGroupStatus>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThread is not busy but last executions ended with error.Thread to run the plans is not busy.Waiting for finish all builds.Executions are started. -
Method Summary
Modifier and TypeMethodDescriptionstatic ExecutionGroupStatus
Returns the enum constant of this class with the specified name.static ExecutionGroupStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IDLE
Thread to run the plans is not busy. -
ERROR
Thread is not busy but last executions ended with error. -
QUEUING
Executions are started. -
IN_PROGRESS
Waiting for finish all builds.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-