org.iids.aos.systemservices
Enum HostManager.AgentStatus

java.lang.Object
  extended by java.lang.Enum<HostManager.AgentStatus>
      extended by org.iids.aos.systemservices.HostManager.AgentStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<HostManager.AgentStatus>
Enclosing interface:
HostManager

public static enum HostManager.AgentStatus
extends java.lang.Enum<HostManager.AgentStatus>


Enum Constant Summary
AWAITING_PICKUP
           
CREATED
           
MIGRATED
           
MIGRATING
           
RUNNING
           
SUSPENDED
           
UNKNOWN
           
 
Method Summary
static HostManager.AgentStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static HostManager.AgentStatus[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UNKNOWN

public static final HostManager.AgentStatus UNKNOWN

SUSPENDED

public static final HostManager.AgentStatus SUSPENDED

RUNNING

public static final HostManager.AgentStatus RUNNING

CREATED

public static final HostManager.AgentStatus CREATED

MIGRATING

public static final HostManager.AgentStatus MIGRATING

MIGRATED

public static final HostManager.AgentStatus MIGRATED

AWAITING_PICKUP

public static final HostManager.AgentStatus AWAITING_PICKUP
Method Detail

values

public static final HostManager.AgentStatus[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(HostManager.AgentStatus c : HostManager.AgentStatus.values())
        System.out.println(c);

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

valueOf

public static HostManager.AgentStatus 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


Copyright ? 2003, 2004 IIDS Group. All Rights Reserved.