Enum Class DataKeys

java.lang.Object
java.lang.Enum<DataKeys>
org.jolokia.service.jmx.handler.list.DataKeys
All Implemented Interfaces:
Serializable, Comparable<DataKeys>, java.lang.constant.Constable

public enum DataKeys extends Enum<DataKeys>
Keys used for generating the list result
Since:
13.09.11
Author:
roland
  • Enum Constant Details

    • DESCRIPTION

      public static final DataKeys DESCRIPTION
    • CLASSNAME

      public static final DataKeys CLASSNAME
    • ERROR

      public static final DataKeys ERROR
    • NAME

      public static final DataKeys NAME
    • TYPES

      public static final DataKeys TYPES
    • ARGS

      public static final DataKeys ARGS
    • RETURN_TYPE

      public static final DataKeys RETURN_TYPE
    • OPERATIONS

      public static final DataKeys OPERATIONS
    • ATTRIBUTES

      public static final DataKeys ATTRIBUTES
    • KEYS

      public static final DataKeys KEYS
    • NOTIFICATIONS

      public static final DataKeys NOTIFICATIONS
    • TYPE

      public static final DataKeys TYPE
    • READ_WRITE

      public static final DataKeys READ_WRITE
  • Method Details

    • values

      public static DataKeys[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static DataKeys valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getKey

      public String getKey()
      Get the key of the enum
      Returns:
      key as string
    • toString

      public String toString()
      Overrides:
      toString in class Enum<DataKeys>