Enum Class VdiAutomationDeploymentResponse.State
java.lang.Object
java.lang.Enum<VdiAutomationDeploymentResponse.State>
com.iland.core.web.rest.response.vdi.VdiAutomationDeploymentResponse.State
- All Implemented Interfaces:
Serializable,Comparable<VdiAutomationDeploymentResponse.State>,Constable
- Enclosing class:
- VdiAutomationDeploymentResponse
public static enum VdiAutomationDeploymentResponse.State
extends Enum<VdiAutomationDeploymentResponse.State>
The enum State.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBooting state.Configuring rdp access state.Deploying state.Failed state;Powering down state.Queued for deployment state.Queued for undeployment state.Ready state.Removing rdp access state.Sending user access notification state.Sending user undeploy notification state.Undeploying state. -
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
-
QUEUED_FOR_DEPLOYMENT
Queued for deployment state. -
DEPLOYING
Deploying state. -
BOOTING
Booting state. -
CONFIGURING_RDP_ACCESS
Configuring rdp access state. -
SENDING_USER_ACCESS_NOTIFICATION
Sending user access notification state. -
READY
Ready state. -
QUEUED_FOR_UNDEPLOYMENT
Queued for undeployment state. -
SENDING_USER_UNDEPLOY_NOTIFICATION
Sending user undeploy notification state. -
REMOVING_RDP_ACCESS
Removing rdp access state. -
POWERING_DOWN
Powering down state. -
UNDEPLOYING
Undeploying state. -
FAILED
Failed state;
-
-
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
-