public enum MdcField extends Enum<MdcField>
| Enum Constant and Description |
|---|
CALL_CHAIN_ID |
CONTEXT_ID |
EXECUTION_REQUEST_ID |
PROJECT_ID |
SESSION_ID |
STUB_TRACE_ID |
TEST_RUN_ID |
TRACE_ID |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static MdcField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MdcField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MdcField PROJECT_ID
public static final MdcField EXECUTION_REQUEST_ID
public static final MdcField TEST_RUN_ID
public static final MdcField CALL_CHAIN_ID
public static final MdcField SESSION_ID
public static final MdcField CONTEXT_ID
public static final MdcField TRACE_ID
public static final MdcField STUB_TRACE_ID
public static MdcField[] values()
for (MdcField c : MdcField.values()) System.out.println(c);
public static MdcField 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 © 2025. All rights reserved.