Enum Class ApplicationDeploymentService.DeploymentStatus
java.lang.Object
java.lang.Enum<ApplicationDeploymentService.DeploymentStatus>
dev.getelements.elements.common.app.ApplicationDeploymentService.DeploymentStatus
- All Implemented Interfaces:
Serializable,Comparable<ApplicationDeploymentService.DeploymentStatus>,Constable
- Enclosing interface:
ApplicationDeploymentService
public static enum ApplicationDeploymentService.DeploymentStatus
extends Enum<ApplicationDeploymentService.DeploymentStatus>
Indicates the status of a deployment.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe deployment has been deployed with success.The deployment has failed due to one reason or another due to the inability to load the application or its elements.Indicates that the deployment completed, but there were warnings during the process which resulted in exceptions that were caught and handled.Indicates that the deployment completed, but there were warnings during the process. -
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
-
CLEAN
The deployment has been deployed with success. -
WARNINGS
Indicates that the deployment completed, but there were warnings during the process. -
UNSTABLE
Indicates that the deployment completed, but there were warnings during the process which resulted in exceptions that were caught and handled. -
FAILED
The deployment has failed due to one reason or another due to the inability to load the application or its elements.
-
-
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
-