public static enum InstrumentationConfig.CaptureKind extends Enum<InstrumentationConfig.CaptureKind>
| Enum Constant and Description |
|---|
OTHER |
TIMER |
TRACE_ENTRY |
TRANSACTION |
| Modifier and Type | Method and Description |
|---|---|
static InstrumentationConfig.CaptureKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InstrumentationConfig.CaptureKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstrumentationConfig.CaptureKind TIMER
public static final InstrumentationConfig.CaptureKind TRACE_ENTRY
public static final InstrumentationConfig.CaptureKind TRANSACTION
public static final InstrumentationConfig.CaptureKind OTHER
public static InstrumentationConfig.CaptureKind[] values()
for (InstrumentationConfig.CaptureKind c : InstrumentationConfig.CaptureKind.values()) System.out.println(c);
public static InstrumentationConfig.CaptureKind 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 nullCopyright © 2011–2015 Glowroot contributors. All rights reserved.