public static enum TunnelRequest.Type extends Enum<TunnelRequest.Type>
Enum Constant and Description |
---|
CONNECTION
A Guacamole connection.
|
CONNECTION_GROUP
A Guacamole connection group.
|
Modifier and Type | Method and Description |
---|---|
static TunnelRequest.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TunnelRequest.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TunnelRequest.Type CONNECTION
public static final TunnelRequest.Type CONNECTION_GROUP
public static TunnelRequest.Type[] values()
for (TunnelRequest.Type c : TunnelRequest.Type.values()) System.out.println(c);
public static TunnelRequest.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015. All rights reserved.