Enum AttributeKey
- java.lang.Object
-
- java.lang.Enum<AttributeKey>
-
- org.openqa.selenium.remote.tracing.AttributeKey
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AttributeKey>
public enum AttributeKey extends java.lang.Enum<AttributeKey>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getKey()
static AttributeKey
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AttributeKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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
-
SPAN_KIND
public static final AttributeKey SPAN_KIND
-
HTTP_METHOD
public static final AttributeKey HTTP_METHOD
-
HTTP_URL
public static final AttributeKey HTTP_URL
-
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
-
LOGGER_CLASS
public static final AttributeKey LOGGER_CLASS
-
DRIVER_RESPONSE
public static final AttributeKey DRIVER_RESPONSE
-
DRIVER_URL
public static final AttributeKey DRIVER_URL
-
DOWNSTREAM_DIALECT
public static final AttributeKey DOWNSTREAM_DIALECT
-
UPSTREAM_DIALECT
public static final AttributeKey UPSTREAM_DIALECT
-
SESSION_ID
public static final AttributeKey SESSION_ID
-
SESSION_CAPABILITIES
public static final AttributeKey SESSION_CAPABILITIES
-
SESSION_URI
public static final AttributeKey SESSION_URI
-
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
-
REQUEST_ID
public static final AttributeKey REQUEST_ID
-
-
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 namejava.lang.NullPointerException
- if the argument is null
-
getKey
public java.lang.String getKey()
-
-