Package com.atlassian.bamboo.plan
Enum Class PlanExecutionConfig.PlanExecutionType
java.lang.Object
java.lang.Enum<PlanExecutionConfig.PlanExecutionType>
com.atlassian.bamboo.plan.PlanExecutionConfig.PlanExecutionType
- All Implemented Interfaces:
Serializable
,Comparable<PlanExecutionConfig.PlanExecutionType>
,Constable
- Enclosing interface:
- PlanExecutionConfig
public static enum PlanExecutionConfig.PlanExecutionType
extends Enum<PlanExecutionConfig.PlanExecutionType>
Type of repeated plan execution
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionContinue successful plan execution on manual stage where it stoppedEnforce executing manual stages as automatic onesStart regular plan executionRerun plan executionRetry failed plan execution on stage where build failed (or had incomplete jobs) -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
REGULAR
Start regular plan execution -
CONTINUE
Continue successful plan execution on manual stage where it stopped -
RESTART
Retry failed plan execution on stage where build failed (or had incomplete jobs) -
RERUN
Rerun plan execution -
ENFORCE_MANUAL_AS_AUTOMATIC
Enforce executing manual stages as automatic ones
-
-
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
-