public static enum EConfigure.ConnectionType extends Enum<EConfigure.ConnectionType>
ERemoteApp. This is currently limited to either
TCP or secure TCP (TLS - Transport Layer Security).| Enum Constant and Description |
|---|
SECURE_TCP
Remote application connection is a TCP socket with
TLS (Transport Layer Security).
|
TCP
Remote application connection is a TCP socket.
|
| Modifier and Type | Method and Description |
|---|---|
static EConfigure.ConnectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EConfigure.ConnectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EConfigure.ConnectionType TCP
public static final EConfigure.ConnectionType SECURE_TCP
public static EConfigure.ConnectionType[] values()
for (EConfigure.ConnectionType c : EConfigure.ConnectionType.values()) System.out.println(c);
public static EConfigure.ConnectionType 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 © 2019. All rights reserved.