Enum Class HttpStatus.Series

java.lang.Object
java.lang.Enum<HttpStatus.Series>
org.seppiko.commons.utils.http.HttpStatus.Series
All Implemented Interfaces:
Serializable, Comparable<HttpStatus.Series>, Constable
Enclosing class:
HttpStatus

public static enum HttpStatus.Series extends Enum<HttpStatus.Series>
Enumeration of HTTP status series.

Retrievable via HttpStatus.series().

  • Enum Constant Details

    • INFORMATIONAL

      public static final HttpStatus.Series INFORMATIONAL
      HTTP Status Code 1xx
    • SUCCESSFUL

      public static final HttpStatus.Series SUCCESSFUL
      HTTP Status Code 2xx
    • REDIRECTION

      public static final HttpStatus.Series REDIRECTION
      HTTP Status Code 3xx
    • CLIENT_ERROR

      public static final HttpStatus.Series CLIENT_ERROR
      HTTP Status Code 4xx
    • SERVER_ERROR

      public static final HttpStatus.Series SERVER_ERROR
      HTTP Status Code 5xx
    • UNKNOWN

      public static final HttpStatus.Series UNKNOWN
      Unknown HTTP Status Code
  • Method Details

    • values

      public static HttpStatus.Series[] 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 HttpStatus.Series 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
    • valueOf

      public static HttpStatus.Series valueOf(int statusCode) throws IllegalArgumentException
      Return the Series enum constant for the supplied status code.
      Parameters:
      statusCode - the HTTP status code (potentially non-standard)
      Returns:
      the Series enum constant for the supplied status code
      Throws:
      IllegalArgumentException - if this enum has no corresponding constant
    • resolve

      public static HttpStatus.Series resolve(int statusCode)
      Resolve the given status code to an HttpStatus.Series, if possible.
      Parameters:
      statusCode - the HTTP status code (potentially non-standard)
      Returns:
      the corresponding Series, or UNKNOWN if not found
    • value

      public int value()
      Return the integer value of this status series.
      Returns:
      value