public enum MetricType extends java.lang.Enum<MetricType>
{ADF26EDC-7E32-11EE-B962-0242AC120002}
Enum Constant and Description |
---|
CpuUtilization
Cpu Utilization
|
DiskBytesRead
Disk Bytes Read
|
DiskBytesWritten
Disk Bytes Written
|
Invalid
Invalid name
|
MemoryUtilization
Memory Utilization
|
NetworksBytesIn
Networks Bytes In
|
NetworksBytesOut
Networks Bytes Out
|
Modifier and Type | Method and Description |
---|---|
static MetricType |
fromValue(long v) |
static MetricType |
fromValue(java.lang.String v) |
int |
value() |
static MetricType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MetricType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetricType Invalid
public static final MetricType CpuUtilization
public static final MetricType MemoryUtilization
public static final MetricType DiskBytesRead
public static final MetricType DiskBytesWritten
public static final MetricType NetworksBytesIn
public static final MetricType NetworksBytesOut
public static MetricType[] values()
for (MetricType c : MetricType.values()) System.out.println(c);
public static MetricType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public static MetricType fromValue(long v)
public static MetricType fromValue(java.lang.String v)