public enum TransactionNamePriority extends java.lang.Enum<TransactionNamePriority>
Transaction.setTransactionName(TransactionNamePriority, boolean, String, String...)
.Enum Constant and Description |
---|
CUSTOM_HIGH
Use a custom transaction name (user defined).
|
CUSTOM_LOW
Use a custom transaction name (user defined).
|
FRAMEWORK_HIGH
Use for framework instrumentation.
|
FRAMEWORK_LOW
Use for framework instrumentation.
|
REQUEST_URI
Use the request URI.
|
Modifier and Type | Method and Description |
---|---|
static TransactionNamePriority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionNamePriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionNamePriority REQUEST_URI
public static final TransactionNamePriority FRAMEWORK_LOW
public static final TransactionNamePriority FRAMEWORK_HIGH
public static final TransactionNamePriority CUSTOM_LOW
public static final TransactionNamePriority CUSTOM_HIGH
public static TransactionNamePriority[] values()
for (TransactionNamePriority c : TransactionNamePriority.values()) System.out.println(c);
public static TransactionNamePriority 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 null