public enum MonitorDbType extends Enum<MonitorDbType>
| 限定符和类型 | 方法和说明 |
|---|---|
Class<?> |
getProcessClass() |
String |
getProcessSql() |
String |
getStatusSql() |
String |
getType() |
String |
getVariablesSql() |
static MonitorDbType |
type(String type) |
static MonitorDbType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static MonitorDbType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final MonitorDbType MYSQL
public static final MonitorDbType MARIADB
public static final MonitorDbType ORACLE
public static final MonitorDbType DM
public static final MonitorDbType SQLSERVER
public static final MonitorDbType POSTGRESQL
public static MonitorDbType[] values()
for (MonitorDbType c : MonitorDbType.values()) System.out.println(c);
public static MonitorDbType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public static MonitorDbType type(String type)
public String getType()
public String getProcessSql()
public String getVariablesSql()
public String getStatusSql()
public Class<?> getProcessClass()
Copyright © 2020. All rights reserved.