public enum StoppedDetail extends java.lang.Enum<StoppedDetail> implements DomainEventDetail
Enum Constant and Description |
---|
CRASHED
Guest crashed.
|
DESTROYED
Forced poweroff from host.
|
FAILED
Host emulator/mgmt failed.
|
FROM_SNAPSHOT
Offline snapshot was loaded.
|
MIGRATED
Migrated off to another host.
|
SAVED
Saved to a state file.
|
SHUTDOWN
Normal shutdown.
|
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static StoppedDetail |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StoppedDetail[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoppedDetail SHUTDOWN
public static final StoppedDetail DESTROYED
public static final StoppedDetail CRASHED
public static final StoppedDetail MIGRATED
public static final StoppedDetail SAVED
public static final StoppedDetail FAILED
public static final StoppedDetail FROM_SNAPSHOT
public static final StoppedDetail UNKNOWN
public static StoppedDetail[] values()
for (StoppedDetail c : StoppedDetail.values()) System.out.println(c);
public static StoppedDetail valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null