Package org.apache.hc.core5.http.message
Enum StatusLine.StatusClass
- java.lang.Object
-
- java.lang.Enum<StatusLine.StatusClass>
-
- org.apache.hc.core5.http.message.StatusLine.StatusClass
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<StatusLine.StatusClass>
- Enclosing class:
- StatusLine
public static enum StatusLine.StatusClass extends java.lang.Enum<StatusLine.StatusClass>
Standard classes of HTTP status codes, plusOTHERfor non-standard codes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLIENT_ERRORClient Error4xxHTTP status codes.INFORMATIONALInformational1xxHTTP status codes.OTHERAny other HTTP status codes (e.g.REDIRECTIONRedirection3xxHTTP status codes.SERVER_ERROR5xxHTTP status codes.SUCCESSFULSuccessful2xxHTTP status codes.
-
Constructor Summary
Constructors Modifier Constructor Description privateStatusClass()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StatusLine.StatusClassfrom(int statusCode)Gets the response status class for the given status code.static StatusLine.StatusClassvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static StatusLine.StatusClass[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INFORMATIONAL
public static final StatusLine.StatusClass INFORMATIONAL
Informational1xxHTTP status codes.
-
SUCCESSFUL
public static final StatusLine.StatusClass SUCCESSFUL
Successful2xxHTTP status codes.
-
REDIRECTION
public static final StatusLine.StatusClass REDIRECTION
Redirection3xxHTTP status codes.
-
CLIENT_ERROR
public static final StatusLine.StatusClass CLIENT_ERROR
Client Error4xxHTTP status codes.
-
SERVER_ERROR
public static final StatusLine.StatusClass SERVER_ERROR
5xxHTTP status codes.
-
OTHER
public static final StatusLine.StatusClass OTHER
Any other HTTP status codes (e.g. non-standard status codes).
-
-
Method Detail
-
values
public static StatusLine.StatusClass[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StatusLine.StatusClass c : StatusLine.StatusClass.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatusLine.StatusClass valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
from
public static StatusLine.StatusClass from(int statusCode)
Gets the response status class for the given status code.- Parameters:
statusCode- response status code to get the class for.- Returns:
- class of the response status code.
-
-