Enum TaskUpdateDirective
- java.lang.Object
-
- java.lang.Enum<TaskUpdateDirective>
-
- com.xebialabs.xlrelease.domain.tasks.TaskUpdateDirective
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TaskUpdateDirective>
public enum TaskUpdateDirective extends java.lang.Enum<TaskUpdateDirective>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TaskUpdateDirectivevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TaskUpdateDirective[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UPDATE_RELEASE_TASK
public static final TaskUpdateDirective UPDATE_RELEASE_TASK
-
UPDATE_TEMPLATE_TASK
public static final TaskUpdateDirective UPDATE_TEMPLATE_TASK
-
UPDATE_TASK_CONFIGURATION
public static final TaskUpdateDirective UPDATE_TASK_CONFIGURATION
-
UPDATE_TASK_TAGS
public static final TaskUpdateDirective UPDATE_TASK_TAGS
-
UPDATE_TASK_SCRIPT
public static final TaskUpdateDirective UPDATE_TASK_SCRIPT
-
UPDATE_TASK_DATES
public static final TaskUpdateDirective UPDATE_TASK_DATES
-
UPDATE_TASK_FLAG
public static final TaskUpdateDirective UPDATE_TASK_FLAG
-
UPDATE_TASK_DESCRIPTION_AND_TITLE
public static final TaskUpdateDirective UPDATE_TASK_DESCRIPTION_AND_TITLE
-
UPDATE_TASK_PRECONDITION
public static final TaskUpdateDirective UPDATE_TASK_PRECONDITION
-
UPDATE_TASK_FAILURE_HANDLER
public static final TaskUpdateDirective UPDATE_TASK_FAILURE_HANDLER
-
UPDATE_TEMPLATE_TASK_PRECONDITION
public static final TaskUpdateDirective UPDATE_TEMPLATE_TASK_PRECONDITION
-
UPDATE_TEMPLATE_TASK_FAILURE_HANDLER
public static final TaskUpdateDirective UPDATE_TEMPLATE_TASK_FAILURE_HANDLER
-
UPDATE_TASK_BLACKOUT_POSTPONE
public static final TaskUpdateDirective UPDATE_TASK_BLACKOUT_POSTPONE
-
UPDATE_USER_INPUT_TASK_VARIABLES_VALUES
public static final TaskUpdateDirective UPDATE_USER_INPUT_TASK_VARIABLES_VALUES
-
-
Method Detail
-
values
public static TaskUpdateDirective[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TaskUpdateDirective c : TaskUpdateDirective.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TaskUpdateDirective valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-