public static enum Instrumentation.AlreadyInTransactionBehavior extends Enum<Instrumentation.AlreadyInTransactionBehavior>
Enum Constant and Description |
---|
CAPTURE_NEW_TRANSACTION |
CAPTURE_TRACE_ENTRY |
DO_NOTHING |
Modifier and Type | Method and Description |
---|---|
static Instrumentation.AlreadyInTransactionBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Instrumentation.AlreadyInTransactionBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Instrumentation.AlreadyInTransactionBehavior CAPTURE_NEW_TRANSACTION
public static final Instrumentation.AlreadyInTransactionBehavior CAPTURE_TRACE_ENTRY
public static final Instrumentation.AlreadyInTransactionBehavior DO_NOTHING
public static Instrumentation.AlreadyInTransactionBehavior valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static Instrumentation.AlreadyInTransactionBehavior[] values()
for (Instrumentation.AlreadyInTransactionBehavior c : Instrumentation.AlreadyInTransactionBehavior.values()) System.out.println(c);
Copyright © 2011–2020 Glowroot contributors. All rights reserved.