public enum VDCStatus extends Enum<VDCStatus>
VDC.getStatus()| Enum Constant and Description | 
|---|
CREATION_FAILED  | 
NOT_READY  | 
READY  | 
UNKNOWN  | 
UNRECOGNIZED  | 
| Modifier and Type | Method and Description | 
|---|---|
static VDCStatus | 
fromValue(int status)  | 
int | 
value()  | 
static VDCStatus | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static VDCStatus[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final VDCStatus CREATION_FAILED
public static final VDCStatus NOT_READY
public static final VDCStatus READY
public static final VDCStatus UNKNOWN
public static final VDCStatus UNRECOGNIZED
public static VDCStatus[] values()
for (VDCStatus c : VDCStatus.values()) System.out.println(c);
public static VDCStatus 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 int value()
public static VDCStatus fromValue(int status)
Copyright © 2009-2013 jclouds. All Rights Reserved.