public static enum VmInfo.AliveStatus extends Enum<VmInfo.AliveStatus>
Enum Constant and Description |
---|
EXITED |
RUNNING |
UNKNOWN
We don't know what the status of this VM is.
|
Modifier and Type | Method and Description |
---|---|
static VmInfo.AliveStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VmInfo.AliveStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VmInfo.AliveStatus RUNNING
public static final VmInfo.AliveStatus EXITED
public static final VmInfo.AliveStatus UNKNOWN
public static VmInfo.AliveStatus[] values()
for (VmInfo.AliveStatus c : VmInfo.AliveStatus.values()) System.out.println(c);
public static VmInfo.AliveStatus 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 © 2017. All Rights Reserved.