Package org.jclouds.cloudstack.domain
Enum Host.State
- java.lang.Object
-
- java.lang.Enum<Host.State>
-
- 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
Enum Constants Enum Constant Description ALERT
CONNECTING
DISCONNECTED
DOWN
ERROR_IN_MAINTENANCE
MAINTENANCE
PREPARE_FOR_MAINTENANCE
REBALANCING
REMOVED
UNKNOWN
UP
UPDATING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
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 nameNullPointerException
- if the argument is null
-
fromValue
public static Host.State fromValue(String value)
-
toString
public String toString()
- Overrides:
toString
in classEnum<Host.State>
-
-