Enum Class HttpHeader

java.lang.Object
java.lang.Enum<HttpHeader>
com.janeirodigital.sai.httputils.HttpHeader
All Implemented Interfaces:
Serializable, Comparable<HttpHeader>, Constable

public enum HttpHeader extends Enum<HttpHeader>
Enumerated list of applicable HTTP headers
  • Enum Constant Details

    • ACCEPT

      public static final HttpHeader ACCEPT
    • AUTHORIZATION

      public static final HttpHeader AUTHORIZATION
    • DPOP

      public static final HttpHeader DPOP
    • CONTENT_TYPE

      public static final HttpHeader CONTENT_TYPE
    • IF_NONE_MATCH

      public static final HttpHeader IF_NONE_MATCH
    • LOCATION

      public static final HttpHeader LOCATION
    • SLUG

      public static final HttpHeader SLUG
  • 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()
    • get

      public static HttpHeader get(String name)