public static enum VM.State extends Enum<VM.State>
| Enum Constant and Description |
|---|
INCOMPLETE |
RUNNING |
STOPPED |
| Modifier and Type | Method and Description |
|---|---|
static VM.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VM.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VM.State RUNNING
public static final VM.State STOPPED
public static final VM.State INCOMPLETE
public static VM.State[] values()
for (VM.State c : VM.State.values()) System.out.println(c);
public static VM.State 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 nullCopyright © 2009-2013 jclouds. All Rights Reserved.