public enum MetricEventType extends java.lang.Enum<MetricEventType>
Enum Constant and Description |
---|
DELETE
Indicates a deleted metric node.
|
NEW
Indicates new metric node.
|
UPDATE
Indicates an updated metric node.
|
Modifier and Type | Method and Description |
---|---|
static MetricEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MetricEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetricEventType NEW
public static final MetricEventType UPDATE
public static final MetricEventType DELETE
public static MetricEventType[] values()
for (MetricEventType c : MetricEventType.values()) System.out.println(c);
public static MetricEventType 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 nullCopyright © 2000-2014 TIBCO Inc. All Rights Reserved.