public enum VmStatus extends Enum<VmStatus>
Enum Constant and Description |
---|
DOWN |
IMAGE_LOCKED |
MIGRATING |
NOT_RESPONDING |
PAUSED |
POWERED_DOWN |
POWERING_DOWN |
POWERING_UP |
REBOOT_IN_PROGRESS |
RESTORING_STATE |
SAVING_STATE |
SUSPENDED |
UNASSIGNED |
UNKNOWN |
UP |
WAIT_FOR_LAUNCH |
Modifier and Type | Method and Description |
---|---|
static VmStatus |
fromValue(String v) |
String |
value() |
static VmStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VmStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VmStatus UNASSIGNED
public static final VmStatus DOWN
public static final VmStatus UP
public static final VmStatus POWERING_UP
public static final VmStatus POWERED_DOWN
public static final VmStatus PAUSED
public static final VmStatus MIGRATING
public static final VmStatus UNKNOWN
public static final VmStatus NOT_RESPONDING
public static final VmStatus WAIT_FOR_LAUNCH
public static final VmStatus REBOOT_IN_PROGRESS
public static final VmStatus SAVING_STATE
public static final VmStatus RESTORING_STATE
public static final VmStatus SUSPENDED
public static final VmStatus IMAGE_LOCKED
public static final VmStatus POWERING_DOWN
public static VmStatus[] values()
for (VmStatus c : VmStatus.values()) System.out.println(c);
public static VmStatus 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()
Copyright © 2012. All Rights Reserved.