public enum GuestDebugProvider extends java.lang.Enum<GuestDebugProvider>
IGuestDebugControl.getDebugProvider()
attribute.
Interface ID: {ACDADDC5-AA0F-4F2E-BE1F-A9BE2828D24A}
Enum Constant and Description |
---|
GDB
The GDB remote stub is enabled.
|
KD
The WinDbg/KD remote stub is enabled.
|
Native
The native debugger console is enabled.
|
None
Guest debugging is disabled.
|
Modifier and Type | Method and Description |
---|---|
static GuestDebugProvider |
fromValue(long v) |
static GuestDebugProvider |
fromValue(java.lang.String v) |
int |
value() |
static GuestDebugProvider |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GuestDebugProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GuestDebugProvider None
public static final GuestDebugProvider Native
public static final GuestDebugProvider GDB
public static final GuestDebugProvider KD
public static GuestDebugProvider[] values()
for (GuestDebugProvider c : GuestDebugProvider.values()) System.out.println(c);
public static GuestDebugProvider 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 nullpublic int value()
public static GuestDebugProvider fromValue(long v)
public static GuestDebugProvider fromValue(java.lang.String v)