Enum Class HttpStatus.Series
- All Implemented Interfaces:
- Serializable, Comparable<HttpStatus.Series>, Constable
- Enclosing class:
- HttpStatus
Enumeration of HTTP status series.
Retrievable via HttpStatus.series().
- Since:
- 3.0
- Author:
- Arjen Poutsma, Sebastien Deleuze, Brian Clozel
- 
Nested Class SummaryNested classes/interfaces inherited from class EnumEnum.EnumDesc<E>
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptionstatic @Nullable HttpStatus.Seriesresolve(int statusCode) Resolve the given status code to anHttpStatus.Series, if possible.intvalue()Return the integer value of this status series.static HttpStatus.SeriesvalueOf(int statusCode) Return theSeriesenum constant for the supplied status code.static HttpStatus.SeriesReturns the enum constant of this class with the specified name.static HttpStatus.Series[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
INFORMATIONAL
- 
SUCCESSFUL
- 
REDIRECTION
- 
CLIENT_ERROR
- 
SERVER_ERROR
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
- 
valuepublic int value()Return the integer value of this status series. Ranges from 1 to 5.
- 
valueOfReturn theSeriesenum constant for the supplied status code.- Parameters:
- statusCode- the HTTP status code (potentially non-standard)
- Returns:
- the Seriesenum constant for the supplied status code
- Throws:
- IllegalArgumentException- if this enum has no corresponding constant
 
- 
resolveResolve the given status code to anHttpStatus.Series, if possible.- Parameters:
- statusCode- the HTTP status code (potentially non-standard)
- Returns:
- the corresponding Series, ornullif not found
- Since:
- 5.1.3
 
 
-