org.redhat.vmtruckloader.vmware.action
Enum VMWareMachinePowerState

java.lang.Object
  extended by java.lang.Enum<VMWareMachinePowerState>
      extended by org.redhat.vmtruckloader.vmware.action.VMWareMachinePowerState
All Implemented Interfaces:
Serializable, Comparable<VMWareMachinePowerState>

public enum VMWareMachinePowerState
extends Enum<VMWareMachinePowerState>

Enumeration of the various possible states of a VMWare VirtualMachine.

Author:
Duncan Doyle

Enum Constant Summary
POWER_OFF
           
POWER_ON
           
POWERED_OFF
           
POWERED_ON
           
 
Method Summary
 String getState()
           
static VMWareMachinePowerState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static VMWareMachinePowerState[] 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

POWER_ON

public static final VMWareMachinePowerState POWER_ON

POWER_OFF

public static final VMWareMachinePowerState POWER_OFF

POWERED_ON

public static final VMWareMachinePowerState POWERED_ON

POWERED_OFF

public static final VMWareMachinePowerState POWERED_OFF
Method Detail

values

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

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

valueOf

public static VMWareMachinePowerState 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 name
NullPointerException - if the argument is null

getState

public String getState()


Copyright © 2013. All Rights Reserved.