Enum AttributeKey

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<AttributeKey>

    public enum AttributeKey
    extends java.lang.Enum<AttributeKey>
    • Enum Constant Detail

      • EXCEPTION_EVENT

        public static final AttributeKey EXCEPTION_EVENT
      • EXCEPTION_TYPE

        public static final AttributeKey EXCEPTION_TYPE
      • EXCEPTION_MESSAGE

        public static final AttributeKey EXCEPTION_MESSAGE
      • EXCEPTION_STACKTRACE

        public static final AttributeKey EXCEPTION_STACKTRACE
      • HTTP_STATUS_CODE

        public static final AttributeKey HTTP_STATUS_CODE
      • HTTP_TARGET_HOST

        public static final AttributeKey HTTP_TARGET_HOST
      • HTTP_CLIENT_CLASS

        public static final AttributeKey HTTP_CLIENT_CLASS
      • HTTP_HANDLER_CLASS

        public static final AttributeKey HTTP_HANDLER_CLASS
      • HTTP_USER_AGENT

        public static final AttributeKey HTTP_USER_AGENT
      • HTTP_REQUEST_CONTENT_LENGTH

        public static final AttributeKey HTTP_REQUEST_CONTENT_LENGTH
      • HTTP_CLIENT_IP

        public static final AttributeKey HTTP_CLIENT_IP
      • LOGGER_CLASS

        public static final AttributeKey LOGGER_CLASS
      • DRIVER_RESPONSE

        public static final AttributeKey DRIVER_RESPONSE
      • DOWNSTREAM_DIALECT

        public static final AttributeKey DOWNSTREAM_DIALECT
      • UPSTREAM_DIALECT

        public static final AttributeKey UPSTREAM_DIALECT
      • SESSION_CAPABILITIES

        public static final AttributeKey SESSION_CAPABILITIES
      • DATABASE_STATEMENT

        public static final AttributeKey DATABASE_STATEMENT
      • DATABASE_OPERATION

        public static final AttributeKey DATABASE_OPERATION
      • DATABASE_USER

        public static final AttributeKey DATABASE_USER
      • DATABASE_CONNECTION_STRING

        public static final AttributeKey DATABASE_CONNECTION_STRING
      • DATABASE_SYSTEM

        public static final AttributeKey DATABASE_SYSTEM
    • Method Detail

      • values

        public static AttributeKey[] 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 (AttributeKey c : AttributeKey.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AttributeKey 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
      • getKey

        public java.lang.String getKey()