Enum TracingConfig.OperationNameProvider
- java.lang.Object
-
- java.lang.Enum<TracingConfig.OperationNameProvider>
-
- io.quarkus.smallrye.opentracing.runtime.TracingConfig.OperationNameProvider
-
- All Implemented Interfaces:
Serializable
,Comparable<TracingConfig.OperationNameProvider>
- Enclosing class:
- TracingConfig
public static enum TracingConfig.OperationNameProvider extends Enum<TracingConfig.OperationNameProvider>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLASS_METHOD
HTTP_PATH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TracingConfig.OperationNameProvider
valueOf(String name)
Returns the enum constant of this type with the specified name.static TracingConfig.OperationNameProvider[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HTTP_PATH
public static final TracingConfig.OperationNameProvider HTTP_PATH
-
CLASS_METHOD
public static final TracingConfig.OperationNameProvider CLASS_METHOD
-
-
Method Detail
-
values
public static TracingConfig.OperationNameProvider[] 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 (TracingConfig.OperationNameProvider c : TracingConfig.OperationNameProvider.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TracingConfig.OperationNameProvider 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
-
-