public enum TransportType extends Enum<TransportType>
| Enum Constant and Description |
|---|
BLUETOOTH
Transport type is Bluetooth.
|
CUSTOM
This transport is setup to be essentially a proxy to a different transport.
|
MULTIPLEX
Transport type will be anything the multiplexing service connects to.
|
TCP
Transport type is TCP.
|
USB |
WEB_SOCKET_SERVER
Used for cloud and embedded
|
| Modifier and Type | Method and Description |
|---|---|
static TransportType |
valueForString(String value) |
static TransportType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransportType MULTIPLEX
public static final TransportType BLUETOOTH
public static final TransportType TCP
public static final TransportType USB
public static final TransportType WEB_SOCKET_SERVER
public static final TransportType CUSTOM
public static TransportType[] values()
for (TransportType c : TransportType.values()) System.out.println(c);
public static TransportType 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 nullpublic static TransportType valueForString(String value)