public enum TransportType extends Enum<TransportType>
Enum Constant and Description |
---|
INPROC
ØMQ local in-process (inter-thread) communication transport
|
IPC
ØMQ local inter-process communication transport
|
PGM
ØMQ reliable multicast transport using PGM
|
TCP
ØMQ unicast transport using TCP
|
Modifier and Type | Method and Description |
---|---|
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 TCP
public static final TransportType PGM
public static final TransportType IPC
public static final TransportType INPROC
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 nullCopyright © 2019. All rights reserved.