public static enum Types.ConsoleProtocol extends java.lang.Enum<Types.ConsoleProtocol>
Enum Constant and Description |
---|
RDP
Remote Desktop Protocol
|
RFB
Remote FrameBuffer protocol (as used in VNC)
|
UNRECOGNIZED
The value does not belong to this enumeration
|
VT100
VT100 terminal
|
Modifier and Type | Method and Description |
---|---|
static Types.ConsoleProtocol |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Types.ConsoleProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.ConsoleProtocol UNRECOGNIZED
public static final Types.ConsoleProtocol VT100
public static final Types.ConsoleProtocol RFB
public static final Types.ConsoleProtocol RDP
public static Types.ConsoleProtocol[] values()
for (Types.ConsoleProtocol c : Types.ConsoleProtocol.values()) System.out.println(c);
public static Types.ConsoleProtocol 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