org.virtualbox_6_1
Enum CloudMachineState

java.lang.Object
  extended by java.lang.Enum<CloudMachineState>
      extended by org.virtualbox_6_1.CloudMachineState
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CloudMachineState>

public enum CloudMachineState
extends java.lang.Enum<CloudMachineState>

Cloud instance execution state Interface ID: {67B6D054-0154-4F5D-B71B-6AC406E1FF78}


Enum Constant Summary
CreatingImage
          The machine is in the process of creating image
Invalid
          Invalid state
Provisioning
          The machine is in the process of provisioning
Running
          The machine runs
Starting
          The machine is in the process of starting
Stopped
          The machine was stopped
Stopping
          The machine is in the process of stopping
Terminated
          The machine was terminated
Terminating
          The machine is in the process of terminating
 
Method Summary
static CloudMachineState fromValue(long v)
           
static CloudMachineState fromValue(java.lang.String v)
           
 int value()
           
static CloudMachineState valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CloudMachineState[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Invalid

public static final CloudMachineState Invalid
Invalid state


Provisioning

public static final CloudMachineState Provisioning
The machine is in the process of provisioning


Running

public static final CloudMachineState Running
The machine runs


Starting

public static final CloudMachineState Starting
The machine is in the process of starting


Stopping

public static final CloudMachineState Stopping
The machine is in the process of stopping


Stopped

public static final CloudMachineState Stopped
The machine was stopped


CreatingImage

public static final CloudMachineState CreatingImage
The machine is in the process of creating image


Terminating

public static final CloudMachineState Terminating
The machine is in the process of terminating


Terminated

public static final CloudMachineState Terminated
The machine was terminated

Method Detail

values

public static CloudMachineState[] 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 (CloudMachineState c : CloudMachineState.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static CloudMachineState 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 name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static CloudMachineState fromValue(long v)

fromValue

public static CloudMachineState fromValue(java.lang.String v)