public static enum MonitorEndPoint.MonitorType extends Enum<MonitorEndPoint.MonitorType>
| 枚举常量和说明 |
|---|
application
程序信息
|
computerSystem
电脑信息
|
cpu
CPU信息
|
diskStore
磁盘信息
|
fileSystem
文件系统信息
|
jvmMem
jvm内存信息
|
memory
内存信息
|
network
网络信息
|
processe
进程信息
|
processor
处理器信息
|
version
程序版本信息
|
| 限定符和类型 | 方法和说明 |
|---|---|
static MonitorEndPoint.MonitorType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static MonitorEndPoint.MonitorType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final MonitorEndPoint.MonitorType computerSystem
public static final MonitorEndPoint.MonitorType cpu
public static final MonitorEndPoint.MonitorType fileSystem
public static final MonitorEndPoint.MonitorType diskStore
public static final MonitorEndPoint.MonitorType jvmMem
public static final MonitorEndPoint.MonitorType memory
public static final MonitorEndPoint.MonitorType network
public static final MonitorEndPoint.MonitorType processor
public static final MonitorEndPoint.MonitorType version
public static final MonitorEndPoint.MonitorType application
public static final MonitorEndPoint.MonitorType processe
public static MonitorEndPoint.MonitorType[] values()
for (MonitorEndPoint.MonitorType c : MonitorEndPoint.MonitorType.values()) System.out.println(c);
public static MonitorEndPoint.MonitorType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.