public enum StandardTagKeys extends java.lang.Enum<StandardTagKeys>
| Enum Constant and Description |
|---|
CLASS_NAME
Canonical name for the class that is providing the metric.
|
MONITOR_ID
Monitor id if one is provided via the annotation.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getKeyName() |
static StandardTagKeys |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StandardTagKeys[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardTagKeys CLASS_NAME
public static final StandardTagKeys MONITOR_ID
public static StandardTagKeys[] values()
for (StandardTagKeys c : StandardTagKeys.values()) System.out.println(c);
public static StandardTagKeys 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 java.lang.String getKeyName()