Enum Class RedirectionMode

java.lang.Object
java.lang.Enum<RedirectionMode>
burp.api.montoya.http.RedirectionMode
All Implemented Interfaces:
Serializable, Comparable<RedirectionMode>, Constable

public enum RedirectionMode extends Enum<RedirectionMode>
Redirection modes when sending a request.
  • Enum Constant Details

    • ALWAYS

      public static final RedirectionMode ALWAYS
      Always follow redirects.
    • NEVER

      public static final RedirectionMode NEVER
      Never follow redirects.
    • SAME_HOST

      public static final RedirectionMode SAME_HOST
      Only follow redirects to the same host.
    • IN_SCOPE

      public static final RedirectionMode IN_SCOPE
      Only follow redirects if the redirect location is in scope.
  • Method Details

    • values

      public static RedirectionMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static RedirectionMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null