Enum DeploymentAction
- java.lang.Object
-
- java.lang.Enum<DeploymentAction>
-
- com.xebialabs.xlrelease.udm.reporting.DeploymentAction
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DeploymentAction>
public enum DeploymentAction extends java.lang.Enum<DeploymentAction>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeploymentActionfind(java.lang.String value)static DeploymentActionfromStatus(com.xebialabs.xlrelease.domain.udm.reporting.DeploymentStatus oldStatus, com.xebialabs.xlrelease.domain.udm.reporting.DeploymentStatus newStatus)java.lang.Stringvalue()static DeploymentActionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DeploymentAction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_ACTION
public static final DeploymentAction NO_ACTION
-
STARTED
public static final DeploymentAction STARTED
-
FAILED
public static final DeploymentAction FAILED
-
RETRIED
public static final DeploymentAction RETRIED
-
SKIPPED
public static final DeploymentAction SKIPPED
-
ABORTED
public static final DeploymentAction ABORTED
-
COMPLETED
public static final DeploymentAction COMPLETED
-
-
Method Detail
-
values
public static DeploymentAction[] 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 (DeploymentAction c : DeploymentAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeploymentAction 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
-
value
public java.lang.String value()
-
fromStatus
public static DeploymentAction fromStatus(com.xebialabs.xlrelease.domain.udm.reporting.DeploymentStatus oldStatus, com.xebialabs.xlrelease.domain.udm.reporting.DeploymentStatus newStatus)
-
find
public static DeploymentAction find(java.lang.String value)
-
-