com.netflix.servo.tag
Enum StandardTagKeys

java.lang.Object
  extended by java.lang.Enum<StandardTagKeys>
      extended by com.netflix.servo.tag.StandardTagKeys
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StandardTagKeys>

public enum StandardTagKeys
extends java.lang.Enum<StandardTagKeys>

Standard tag keys that are used within this library.


Enum Constant Summary
CLASS_NAME
          Canonical name for the class that is providing the metric.
MONITOR_ID
          Monitor id if one is provided via the annotation.
 
Method Summary
 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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CLASS_NAME

public static final StandardTagKeys CLASS_NAME
Canonical name for the class that is providing the metric.


MONITOR_ID

public static final StandardTagKeys MONITOR_ID
Monitor id if one is provided via the annotation.

Method Detail

values

public static StandardTagKeys[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (StandardTagKeys c : StandardTagKeys.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static StandardTagKeys valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getKeyName

public java.lang.String getKeyName()