public enum ControlMetricType extends Enum<ControlMetricType>
| Enum Constant and Description |
|---|
ByteRate
Byte Rate of Control Message.
|
CpuInfo
Cpu Utilization.
|
MemoryInfo
Memory Utilization.
|
PacketRate
Racket Rate of Control Message.
|
| Modifier and Type | Method and Description |
|---|---|
static ControlMetricType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ControlMetricType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControlMetricType PacketRate
public static final ControlMetricType ByteRate
public static final ControlMetricType CpuInfo
public static final ControlMetricType MemoryInfo
public static ControlMetricType[] values()
for (ControlMetricType c : ControlMetricType.values()) System.out.println(c);
public static ControlMetricType 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 © 2015. All rights reserved.