public enum TransportType extends Enum<TransportType>
| Enum Constant and Description |
|---|
CLI_INBOUND |
FILE_INBOUND |
HTTP_INBOUND |
HTTP2_INBOUND |
JMS_INBOUND |
KAFKA_INBOUND |
REST_INBOUND |
SMPP_INBOUND |
SNMP_INBOUND |
SOAP_OVER_HTTP_INBOUND |
| 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 CLI_INBOUND
public static final TransportType FILE_INBOUND
public static final TransportType HTTP_INBOUND
public static final TransportType HTTP2_INBOUND
public static final TransportType JMS_INBOUND
public static final TransportType KAFKA_INBOUND
public static final TransportType REST_INBOUND
public static final TransportType SNMP_INBOUND
public static final TransportType SOAP_OVER_HTTP_INBOUND
public static final TransportType SMPP_INBOUND
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 © 2025. All rights reserved.