Enum PropagatorType
- java.lang.Object
-
- java.lang.Enum<PropagatorType>
-
- io.quarkus.opentelemetry.runtime.config.build.PropagatorType
-
- All Implemented Interfaces:
Serializable,Comparable<PropagatorType>
public enum PropagatorType extends Enum<PropagatorType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static classPropagatorType.Constants
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static PropagatorTypevalueOf(String name)Returns the enum constant of this type with the specified name.static PropagatorType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRACE_CONTEXT
public static final PropagatorType TRACE_CONTEXT
-
BAGGAGE
public static final PropagatorType BAGGAGE
-
B3
public static final PropagatorType B3
-
B3MULTI
public static final PropagatorType B3MULTI
-
JAEGER
public static final PropagatorType JAEGER
-
XRAY
public static final PropagatorType XRAY
-
OT_TRACE
public static final PropagatorType OT_TRACE
-
-
Method Detail
-
values
public static PropagatorType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PropagatorType c : PropagatorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PropagatorType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
-