public enum VSystemStatus extends Enum<VSystemStatus>
Enum Constant and Description |
---|
DEPLOYING |
ERROR |
NORMAL |
RECONFIG_ING |
UNRECOGNIZED |
Modifier and Type | Method and Description |
---|---|
static VSystemStatus |
fromValue(String status) |
String |
toString() |
String |
value() |
static VSystemStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VSystemStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VSystemStatus NORMAL
public static final VSystemStatus RECONFIG_ING
public static final VSystemStatus DEPLOYING
public static final VSystemStatus ERROR
public static final VSystemStatus UNRECOGNIZED
public static VSystemStatus[] values()
for (VSystemStatus c : VSystemStatus.values()) System.out.println(c);
public static VSystemStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic String value()
public String toString()
toString
in class Enum<VSystemStatus>
public static VSystemStatus fromValue(String status)
Copyright © 2009-2013 jclouds. All Rights Reserved.