public static enum Configuration.Propagation extends java.lang.Enum<Configuration.Propagation>
Enum Constant and Description |
---|
B3
The Zipkin B3 trace context propagation format.
|
JAEGER
The default Jaeger trace context propagation format.
|
Modifier and Type | Method and Description |
---|---|
static Configuration.Propagation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.Propagation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.Propagation JAEGER
public static final Configuration.Propagation B3
public static Configuration.Propagation[] values()
for (Configuration.Propagation c : Configuration.Propagation.values()) System.out.println(c);
public static Configuration.Propagation 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