Enum Class HttpHeader

java.lang.Object
java.lang.Enum<HttpHeader>
org.openqa.selenium.remote.http.HttpHeader
All Implemented Interfaces:
Serializable, Comparable<HttpHeader>, Constable

public enum HttpHeader extends Enum<HttpHeader>
  • Enum Constant Details

    • CacheControl

      public static final HttpHeader CacheControl
    • ContentLength

      public static final HttpHeader ContentLength
    • ContentType

      public static final HttpHeader ContentType
    • Expires

      public static final HttpHeader Expires
    • Host

      public static final HttpHeader Host
    • UserAgent

      public static final HttpHeader UserAgent
    • XForwardedFor

      public static final HttpHeader XForwardedFor
  • Method Details

    • values

      public static HttpHeader[] 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 HttpHeader 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
    • getName

      public String getName()