|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<GuestDebugProvider>
org.virtualbox_7_0.GuestDebugProvider
public enum GuestDebugProvider
The enabled guest debug provider. This enumeration represents possible
values for theIGuestDebugControl.getDebugProvider()
attribute.
Interface ID: {ACDADDC5-AA0F-4F2E-BE1F-A9BE2828D24A}
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final GuestDebugProvider None
public static final GuestDebugProvider Native
public static final GuestDebugProvider GDB
public static final GuestDebugProvider KD
Method Detail |
---|
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 name
java.lang.NullPointerException
- if the argument is nullpublic int value()
public static GuestDebugProvider fromValue(long v)
public static GuestDebugProvider fromValue(java.lang.String v)
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |