Enum RequestTracingConstants

    • Enum Constant Detail

      • REQUEST_TRACING_DISABLED_ENVIRONMENT_VARIABLE

        public static final RequestTracingConstants REQUEST_TRACING_DISABLED_ENVIRONMENT_VARIABLE
        Constant for Disabling Tracing
      • AZURE_FUNCTIONS_ENVIRONMENT_VARIABLE

        public static final RequestTracingConstants AZURE_FUNCTIONS_ENVIRONMENT_VARIABLE
        Constant for checking for use in Azure Functions
      • AZURE_WEB_APP_ENVIRONMENT_VARIABLE

        public static final RequestTracingConstants AZURE_WEB_APP_ENVIRONMENT_VARIABLE
        Constant for checking for use in Azure Web App
      • KUBERNETES_ENVIRONMENT_VARIABLE

        public static final RequestTracingConstants KUBERNETES_ENVIRONMENT_VARIABLE
        Constant for checking for use in Kubernetes
      • REQUEST_TYPE_KEY

        public static final RequestTracingConstants REQUEST_TYPE_KEY
        Constant for tracing the type of request
      • CORRELATION_CONTEXT_HEADER

        public static final RequestTracingConstants CORRELATION_CONTEXT_HEADER
        Constant for http Header Correlation Context
    • Method Detail

      • values

        public static RequestTracingConstants[] 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 (RequestTracingConstants c : RequestTracingConstants.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RequestTracingConstants 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 name
        NullPointerException - if the argument is null