public enum IOErrorAction extends java.lang.Enum<IOErrorAction>
Enum Constant and Description |
---|
NONE
No action, I/O error ignored.
|
PAUSE
Guest CPUs are paused.
|
REPORT
I/O error was reported to the guest OS.
|
UNKNOWN
An unknown action was taken.
|
Modifier and Type | Method and Description |
---|---|
static IOErrorAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IOErrorAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IOErrorAction NONE
public static final IOErrorAction PAUSE
public static final IOErrorAction REPORT
public static final IOErrorAction UNKNOWN
public static IOErrorAction[] values()
for (IOErrorAction c : IOErrorAction.values()) System.out.println(c);
public static IOErrorAction 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