public enum MeasurementValue extends java.lang.Enum<MeasurementValue>
NotifyValue.| Enum Constant and Description |
|---|
ALL
Assign all values to the specified record.
|
FILE_IN
The value to be notified should be considered as bytes read from file.
|
FILE_OUT
The value to be notified should be considered as bytes written to
file.
|
MEM_ALLOCATED
The value to be notified should be considered as memory allocation.
|
MEM_UNALLOCATED
The value to be notified should be considered as memory unallocation.
|
NET_IN
The value to be notified should be considered as bytes read from network.
|
NET_OUT
The value to be notified should be considered as bytes written to
network.
|
VALUE
Treats the probed value as a value change.
|
| Modifier and Type | Method and Description |
|---|---|
static MeasurementValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MeasurementValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeasurementValue ALL
public static final MeasurementValue VALUE
public static final MeasurementValue MEM_ALLOCATED
public static final MeasurementValue MEM_UNALLOCATED
public static final MeasurementValue NET_IN
public static final MeasurementValue NET_OUT
public static final MeasurementValue FILE_IN
public static final MeasurementValue FILE_OUT
public static MeasurementValue[] values()
for (MeasurementValue c : MeasurementValue.values()) System.out.println(c);
public static MeasurementValue 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 null