Package org.springframework.http
Enum Class HttpStatus.Series
- All Implemented Interfaces:
Serializable
,Comparable<HttpStatus.Series>
,Constable
- Enclosing class:
- HttpStatus
Enumeration of HTTP status series.
Retrievable via HttpStatus.series()
.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic HttpStatus.Series
resolve
(int statusCode) Resolve the given status code to anHttpStatus.Series
, if possible.int
value()
Return the integer value of this status series.static HttpStatus.Series
valueOf
(int statusCode) Return theSeries
enum constant for the supplied status code.static HttpStatus.Series
Returns the enum constant of this class with the specified name.static HttpStatus.Series
valueOf
(HttpStatus status) Deprecated.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
-
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
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 nameNullPointerException
- if the argument is null
-
value
public int value()Return the integer value of this status series. Ranges from 1 to 5. -
valueOf
Deprecated.as of 5.3, in favor of invokingHttpStatus.series()
directlyReturn theSeries
enum constant for the suppliedHttpStatus
.- Parameters:
status
- a standard HTTP status enum constant- Returns:
- the
Series
enum constant for the suppliedHttpStatus
-
valueOf
Return theSeries
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
Resolve the given status code to anHttpStatus.Series
, if possible.- Parameters:
statusCode
- the HTTP status code (potentially non-standard)- Returns:
- the corresponding
Series
, ornull
if not found - Since:
- 5.1.3
-
HttpStatus.series()
directly