Enum Class Http.ResponseStatus.Family

java.lang.Object
java.lang.Enum<Http.ResponseStatus.Family>
io.helidon.common.http.Http.ResponseStatus.Family
All Implemented Interfaces:
Serializable, Comparable<Http.ResponseStatus.Family>, Constable
Enclosing interface:
Http.ResponseStatus

public static enum Http.ResponseStatus.Family extends Enum<Http.ResponseStatus.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

  • Method Details

    • values

      public static Http.ResponseStatus.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 Http.ResponseStatus.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 Http.ResponseStatus.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.