org.jclouds.cloudstack.domain
Enum Host.State

java.lang.Object
  extended by java.lang.Enum<Host.State>
      extended by org.jclouds.cloudstack.domain.Host.State
All Implemented Interfaces:
Serializable, Comparable<Host.State>
Enclosing class:
Host

public static enum Host.State
extends Enum<Host.State>


Enum Constant Summary
ALERT
           
CONNECTING
           
DISCONNECTED
           
DOWN
           
ERROR_IN_MAINTENANCE
           
MAINTENANCE
           
PREPARE_FOR_MAINTENANCE
           
REBALANCING
           
REMOVED
           
UNKNOWN
           
UP
           
UPDATING
           
 
Method Summary
static Host.State fromValue(String value)
           
 String toString()
           
static Host.State valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Host.State[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CONNECTING

public static final Host.State CONNECTING

UP

public static final Host.State UP

DOWN

public static final Host.State DOWN

DISCONNECTED

public static final Host.State DISCONNECTED

UPDATING

public static final Host.State UPDATING

PREPARE_FOR_MAINTENANCE

public static final Host.State PREPARE_FOR_MAINTENANCE

ERROR_IN_MAINTENANCE

public static final Host.State ERROR_IN_MAINTENANCE

MAINTENANCE

public static final Host.State MAINTENANCE

ALERT

public static final Host.State ALERT

REMOVED

public static final Host.State REMOVED

REBALANCING

public static final Host.State REBALANCING

UNKNOWN

public static final Host.State UNKNOWN
Method Detail

values

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

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

valueOf

public static Host.State 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

fromValue

public static Host.State fromValue(String value)

toString

public String toString()
Overrides:
toString in class Enum<Host.State>


Copyright © 2009-2012 jclouds. All Rights Reserved.