Enum Class HttpHeader

java.lang.Object
java.lang.Enum<HttpHeader>
net.uiqui.embedhttp.api.HttpHeader
All Implemented Interfaces:
Serializable, Comparable<HttpHeader>, Constable

public enum HttpHeader extends Enum<HttpHeader>
Enum representing common HTTP headers. Provides a mapping between header names and their string values.
  • Enum Constant Details

    • ACCEPT

      public static final HttpHeader ACCEPT
    • ACCEPT_ENCODING

      public static final HttpHeader ACCEPT_ENCODING
    • AUTHORIZATION

      public static final HttpHeader AUTHORIZATION
    • CACHE_CONTROL

      public static final HttpHeader CACHE_CONTROL
    • CONTENT_LENGTH

      public static final HttpHeader CONTENT_LENGTH
    • CONTENT_TYPE

      public static final HttpHeader CONTENT_TYPE
    • HOST

      public static final HttpHeader HOST
    • LOCATION

      public static final HttpHeader LOCATION
    • ORIGIN

      public static final HttpHeader ORIGIN
    • REFERER

      public static final HttpHeader REFERER
    • USER_AGENT

      public static final HttpHeader USER_AGENT
    • TRANSFER_ENCODING

      public static final HttpHeader TRANSFER_ENCODING
    • CONNECTION

      public static final HttpHeader CONNECTION
  • 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
    • getValue

      public String getValue()
      Gets the string value of the HTTP header.
      Returns:
      the string value of the header