org.ow2.jasmine.vmm.api
Enum VirtualMachineMXBean.PowerState

java.lang.Object
  extended by java.lang.Enum<VirtualMachineMXBean.PowerState>
      extended by org.ow2.jasmine.vmm.api.VirtualMachineMXBean.PowerState
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<VirtualMachineMXBean.PowerState>
Enclosing interface:
VirtualMachineMXBean

public static enum VirtualMachineMXBean.PowerState
extends java.lang.Enum<VirtualMachineMXBean.PowerState>

Different states of a virtual machine.


Enum Constant Summary
HALTED
          the virtual machine is halted
PAUSED
          the virtual machine is paused
RUNNING
          The virtual machine is running
SUSPENDED
          the virtual machine is suspended
UNKNOWN
          the state of the virtual machine is unknown
 
Method Summary
static VirtualMachineMXBean.PowerState valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VirtualMachineMXBean.PowerState[] 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

HALTED

public static final VirtualMachineMXBean.PowerState HALTED
the virtual machine is halted


PAUSED

public static final VirtualMachineMXBean.PowerState PAUSED
the virtual machine is paused


RUNNING

public static final VirtualMachineMXBean.PowerState RUNNING
The virtual machine is running


SUSPENDED

public static final VirtualMachineMXBean.PowerState SUSPENDED
the virtual machine is suspended


UNKNOWN

public static final VirtualMachineMXBean.PowerState UNKNOWN
the state of the virtual machine is unknown

Method Detail

values

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

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

valueOf

public static VirtualMachineMXBean.PowerState 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


Copyright © 2009 OW2 Consortium. All Rights Reserved.