Enum Trace

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Trace>

    public enum Trace
    extends java.lang.Enum<Trace>
    this enum is used to control what from the HTTP request and response is logged
    • Enum Constant Detail

      • RequestHeaders

        public static final Trace RequestHeaders
      • RequestBody

        public static final Trace RequestBody
      • RequestBodySummary

        public static final Trace RequestBodySummary
      • ResponseHeaders

        public static final Trace ResponseHeaders
      • ResponseBody

        public static final Trace ResponseBody
      • ResponseBodySummary

        public static final Trace ResponseBodySummary
      • Request

        public static final Trace Request
      • Response

        public static final Trace Response
    • Method Detail

      • values

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

        public static Trace valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • addReplacements

        public boolean addReplacements​(java.util.Set<Trace> traces)
      • parse

        public static java.util.Set<Trace> parse​(java.lang.String traces)
        Parse the string into a Set of Traces