Package org.apache.iotdb.commons.service
Enum ServiceType
- java.lang.Object
-
- java.lang.Enum<ServiceType>
-
- org.apache.iotdb.commons.service.ServiceType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ServiceType>
public enum ServiceType extends java.lang.Enum<ServiceType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetJmxName()java.lang.StringgetName()static ServiceTypevalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
STORAGE_ENGINE_SERVICE
public static final ServiceType STORAGE_ENGINE_SERVICE
-
JMX_SERVICE
public static final ServiceType JMX_SERVICE
-
METRIC_SERVICE
public static final ServiceType METRIC_SERVICE
-
RPC_SERVICE
public static final ServiceType RPC_SERVICE
-
INFLUX_SERVICE
public static final ServiceType INFLUX_SERVICE
-
MQTT_SERVICE
public static final ServiceType MQTT_SERVICE
-
MONITOR_SERVICE
public static final ServiceType MONITOR_SERVICE
-
STAT_MONITOR_SERVICE
public static final ServiceType STAT_MONITOR_SERVICE
-
WAL_SERVICE
public static final ServiceType WAL_SERVICE
-
CLOSE_MERGE_SERVICE
public static final ServiceType CLOSE_MERGE_SERVICE
-
JVM_MEM_CONTROL_SERVICE
public static final ServiceType JVM_MEM_CONTROL_SERVICE
-
AUTHORIZATION_SERVICE
public static final ServiceType AUTHORIZATION_SERVICE
-
FILE_READER_MANAGER_SERVICE
public static final ServiceType FILE_READER_MANAGER_SERVICE
-
UPGRADE_SERVICE
public static final ServiceType UPGRADE_SERVICE
-
SETTLE_SERVICE
public static final ServiceType SETTLE_SERVICE
-
SYNC_RPC_SERVICE
public static final ServiceType SYNC_RPC_SERVICE
-
SYNC_SERVICE
public static final ServiceType SYNC_SERVICE
-
MERGE_SERVICE
public static final ServiceType MERGE_SERVICE
-
COMPACTION_SERVICE
public static final ServiceType COMPACTION_SERVICE
-
PERFORMANCE_STATISTIC_SERVICE
public static final ServiceType PERFORMANCE_STATISTIC_SERVICE
-
TVLIST_ALLOCATOR_SERVICE
public static final ServiceType TVLIST_ALLOCATOR_SERVICE
-
UDF_CLASSLOADER_MANAGER_SERVICE
public static final ServiceType UDF_CLASSLOADER_MANAGER_SERVICE
-
TEMPORARY_QUERY_DATA_FILE_SERVICE
public static final ServiceType TEMPORARY_QUERY_DATA_FILE_SERVICE
-
TRIGGER_REGISTRATION_SERVICE_OLD
public static final ServiceType TRIGGER_REGISTRATION_SERVICE_OLD
-
CACHE_HIT_RATIO_DISPLAY_SERVICE
public static final ServiceType CACHE_HIT_RATIO_DISPLAY_SERVICE
-
QUERY_TIME_MANAGER
public static final ServiceType QUERY_TIME_MANAGER
-
FLUSH_SERVICE
public static final ServiceType FLUSH_SERVICE
-
CLUSTER_MONITOR_SERVICE
public static final ServiceType CLUSTER_MONITOR_SERVICE
-
SYSTEMINFO_SERVICE
public static final ServiceType SYSTEMINFO_SERVICE
-
CONTINUOUS_QUERY_SERVICE
public static final ServiceType CONTINUOUS_QUERY_SERVICE
-
CLUSTER_INFO_SERVICE
public static final ServiceType CLUSTER_INFO_SERVICE
-
CLUSTER_RPC_SERVICE
public static final ServiceType CLUSTER_RPC_SERVICE
-
CLUSTER_META_RPC_SERVICE
public static final ServiceType CLUSTER_META_RPC_SERVICE
-
CLUSTER_META_HEART_BEAT_RPC_SERVICE
public static final ServiceType CLUSTER_META_HEART_BEAT_RPC_SERVICE
-
CLUSTER_DATA_RPC_SERVICE
public static final ServiceType CLUSTER_DATA_RPC_SERVICE
-
CLUSTER_DATA_HEART_BEAT_RPC_SERVICE
public static final ServiceType CLUSTER_DATA_HEART_BEAT_RPC_SERVICE
-
CLUSTER_META_ENGINE
public static final ServiceType CLUSTER_META_ENGINE
-
CLUSTER_DATA_ENGINE
public static final ServiceType CLUSTER_DATA_ENGINE
-
REST_SERVICE
public static final ServiceType REST_SERVICE
-
CONFIG_NODE_SERVICE
public static final ServiceType CONFIG_NODE_SERVICE
-
DATA_NODE_REGION_MIGRATE_SERVICE
public static final ServiceType DATA_NODE_REGION_MIGRATE_SERVICE
-
DATA_NODE_MANAGEMENT_SERVICE
public static final ServiceType DATA_NODE_MANAGEMENT_SERVICE
-
FRAGMENT_INSTANCE_MANAGER_SERVICE
public static final ServiceType FRAGMENT_INSTANCE_MANAGER_SERVICE
-
MPP_DATA_EXCHANGE_SERVICE
public static final ServiceType MPP_DATA_EXCHANGE_SERVICE
-
INTERNAL_SERVICE
public static final ServiceType INTERNAL_SERVICE
-
IOT_CONSENSUS_SERVICE
public static final ServiceType IOT_CONSENSUS_SERVICE
-
-
Method Detail
-
values
public static ServiceType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ServiceType c : ServiceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getName
public java.lang.String getName()
-
getJmxName
public java.lang.String getJmxName()
-
-