public enum GuestDebugIoProvider extends java.lang.Enum<GuestDebugIoProvider>
IGuestDebugControl.getDebugIoProvider()
attribute.
Interface ID: {0CF00B1B-2FF7-414C-81C6-6CF410EAEC4A}
Enum Constant and Description |
---|
IPC
The remote stub is available through a IPC connection,
namely a named pipe on Windows or a unix socket on other hosts.
|
None
No connection available (only useful with
GuestDebugProvider.None ). |
TCP
The remote stub is available through a TCP connection.
|
UDP
The remote stub is available through a UDP connection.
|
Modifier and Type | Method and Description |
---|---|
static GuestDebugIoProvider |
fromValue(long v) |
static GuestDebugIoProvider |
fromValue(java.lang.String v) |
int |
value() |
static GuestDebugIoProvider |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GuestDebugIoProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GuestDebugIoProvider None
GuestDebugProvider.None
).public static final GuestDebugIoProvider TCP
public static final GuestDebugIoProvider UDP
public static final GuestDebugIoProvider IPC
public static GuestDebugIoProvider[] values()
for (GuestDebugIoProvider c : GuestDebugIoProvider.values()) System.out.println(c);
public static GuestDebugIoProvider 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 GuestDebugIoProvider fromValue(long v)
public static GuestDebugIoProvider fromValue(java.lang.String v)