public enum ServiceType extends Enum<ServiceType>
| Enum Constant and Description |
|---|
BIE_GATEWAY |
CLOUD_TO_CLOUD |
EVS |
GATEWAY |
HTTP |
LINKAGE |
MQTT |
OTA |
RMQ_QUEUE |
RULE_CHAIN |
TSDB |
| Modifier and Type | Method and Description |
|---|---|
static ServiceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceType MQTT
public static final ServiceType EVS
public static final ServiceType RMQ_QUEUE
public static final ServiceType RULE_CHAIN
public static final ServiceType CLOUD_TO_CLOUD
public static final ServiceType GATEWAY
public static final ServiceType LINKAGE
public static final ServiceType OTA
public static final ServiceType TSDB
public static final ServiceType HTTP
public static final ServiceType BIE_GATEWAY
public static ServiceType[] values()
for (ServiceType c : ServiceType.values()) System.out.println(c);
public static ServiceType 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 © 2024. All rights reserved.