Package com.docusign.maestro.model
Enum DeploymentStatus
- java.lang.Object
-
- java.lang.Enum<DeploymentStatus>
-
- com.docusign.maestro.model.DeploymentStatus
-
- All Implemented Interfaces:
Serializable,Comparable<DeploymentStatus>
public enum DeploymentStatus extends Enum<DeploymentStatus>
The workflow deployment status
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELETE_IN_PROGRESSDELETEDDEPLOYEDDEPLOYMENT_IN_PROGRESSFAILEDNOT_DEPLOYEDUNPUBLISH_IN_PROGRESSUNPUBLISHED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeploymentStatusfromValue(String value)StringgetValue()StringtoString()static DeploymentStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static DeploymentStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEPLOYMENT_IN_PROGRESS
public static final DeploymentStatus DEPLOYMENT_IN_PROGRESS
-
DEPLOYED
public static final DeploymentStatus DEPLOYED
-
FAILED
public static final DeploymentStatus FAILED
-
DELETE_IN_PROGRESS
public static final DeploymentStatus DELETE_IN_PROGRESS
-
DELETED
public static final DeploymentStatus DELETED
-
NOT_DEPLOYED
public static final DeploymentStatus NOT_DEPLOYED
-
UNPUBLISH_IN_PROGRESS
public static final DeploymentStatus UNPUBLISH_IN_PROGRESS
-
UNPUBLISHED
public static final DeploymentStatus UNPUBLISHED
-
-
Method Detail
-
values
public static DeploymentStatus[] 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 (DeploymentStatus c : DeploymentStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeploymentStatus valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<DeploymentStatus>
-
fromValue
public static DeploymentStatus fromValue(String value)
-
-