Enum Class Status.Family

java.lang.Object
java.lang.Enum<Status.Family>
io.helidon.http.Status.Family
All Implemented Interfaces:
Serializable, Comparable<Status.Family>, Constable
Enclosing class:
Status

public static enum Status.Family extends Enum<Status.Family>
An enumeration representing the class of status code. Family is used here since class is overloaded in Java.

Copied from JAX-RS.

  • Enum Constant Details

    • INFORMATIONAL

      public static final Status.Family INFORMATIONAL
      1xx HTTP status codes.
    • SUCCESSFUL

      public static final Status.Family SUCCESSFUL
      2xx HTTP status codes.
    • REDIRECTION

      public static final Status.Family REDIRECTION
      3xx HTTP status codes.
    • CLIENT_ERROR

      public static final Status.Family CLIENT_ERROR
      4xx HTTP status codes.
    • SERVER_ERROR

      public static final Status.Family SERVER_ERROR
      5xx HTTP status codes.
    • OTHER

      public static final Status.Family OTHER
      Other, unrecognized HTTP status codes.
  • Method Details

    • values

      public static Status.Family[] 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 Status.Family 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
    • of

      public static Status.Family of(int statusCode)
      Get the family for the response status code.
      Parameters:
      statusCode - response status code to get the family for.
      Returns:
      family of the response status code.