Enum Class RequestStage

java.lang.Object
java.lang.Enum<RequestStage>
org.openqa.selenium.devtools.v120.fetch.model.RequestStage
All Implemented Interfaces:
Serializable, Comparable<RequestStage>, Constable

public enum RequestStage extends Enum<RequestStage>
Stages of the request to handle. Request will intercept before the request is sent. Response will intercept after the response is received (but before response body is received).
  • Enum Constant Details

  • Method Details

    • values

      public static RequestStage[] 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 RequestStage 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
    • fromString

      public static RequestStage fromString(String s)
    • toString

      public String toString()
      Overrides:
      toString in class Enum<RequestStage>
    • toJson

      public String toJson()