public enum TracePropagationStyle extends Enum<TracePropagationStyle>
| Enum Constant and Description |
|---|
B3MULTI |
B3SINGLE |
DATADOG |
HAYSTACK |
NONE |
TRACECONTEXT |
XRAY |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static TracePropagationStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TracePropagationStyle |
valueOfDisplayName(String displayName) |
static TracePropagationStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TracePropagationStyle DATADOG
public static final TracePropagationStyle B3SINGLE
public static final TracePropagationStyle B3MULTI
public static final TracePropagationStyle HAYSTACK
public static final TracePropagationStyle XRAY
public static final TracePropagationStyle TRACECONTEXT
public static final TracePropagationStyle NONE
public static TracePropagationStyle[] values()
for (TracePropagationStyle c : TracePropagationStyle.values()) System.out.println(c);
public static TracePropagationStyle 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 TracePropagationStyle valueOfDisplayName(String displayName)
public String toString()
toString in class Enum<TracePropagationStyle>