public enum SuspendedDetail extends java.lang.Enum<SuspendedDetail> implements DomainEventDetail
Enum Constant and Description |
---|
API_ERROR
Suspended after failure during libvirt API call.
|
FROM_SNAPSHOT
Restored from paused snapshot.
|
IOERROR
Suspended due to a disk I/O error.
|
MIGRATED
Suspended for offline migration.
|
PAUSED
Normal suspend due to admin pause.
|
RESTORED
Restored from paused state file.
|
UNKNOWN |
WATCHDOG
Suspended due to a watchdog firing.
|
Modifier and Type | Method and Description |
---|---|
static SuspendedDetail |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SuspendedDetail[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SuspendedDetail PAUSED
public static final SuspendedDetail MIGRATED
public static final SuspendedDetail IOERROR
public static final SuspendedDetail WATCHDOG
public static final SuspendedDetail RESTORED
public static final SuspendedDetail FROM_SNAPSHOT
public static final SuspendedDetail API_ERROR
public static final SuspendedDetail UNKNOWN
public static SuspendedDetail[] values()
for (SuspendedDetail c : SuspendedDetail.values()) System.out.println(c);
public static SuspendedDetail 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