org.virtualbox_7_0
Enum GuestDebugProvider

java.lang.Object
  extended by java.lang.Enum<GuestDebugProvider>
      extended by org.virtualbox_7_0.GuestDebugProvider
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<GuestDebugProvider>

public enum GuestDebugProvider
extends java.lang.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

None

public static final GuestDebugProvider None
Guest debugging is disabled.


Native

public static final GuestDebugProvider Native
The native debugger console is enabled.


GDB

public static final GuestDebugProvider GDB
The GDB remote stub is enabled.


KD

public static final GuestDebugProvider KD
The WinDbg/KD remote stub is enabled.

Method Detail

values

public static GuestDebugProvider[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (GuestDebugProvider c : GuestDebugProvider.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static GuestDebugProvider valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public int value()

fromValue

public static GuestDebugProvider fromValue(long v)

fromValue

public static GuestDebugProvider fromValue(java.lang.String v)