Enum ResponseStatus
- java.lang.Object
-
- java.lang.Enum<ResponseStatus>
-
- me.syncwrld.booter.common.tool.http.ResponseStatus
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ResponseStatus>
public enum ResponseStatus extends java.lang.Enum<ResponseStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPTED
BAD_REQUEST
FORBIDDEN
GATEWAY_TIMEOUT
INTERNAL_SERVER_ERROR
MOVED_PERMANENTLY
NOT_FOUND
NOT_IMPLEMENTED
SERVICE_UNAVAILABLE
SUCCESS
UNAUTHORIZED
UNKNOWN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ResponseStatus
get(int code)
static ResponseStatus
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ResponseStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final ResponseStatus SUCCESS
-
ACCEPTED
public static final ResponseStatus ACCEPTED
-
MOVED_PERMANENTLY
public static final ResponseStatus MOVED_PERMANENTLY
-
BAD_REQUEST
public static final ResponseStatus BAD_REQUEST
-
UNAUTHORIZED
public static final ResponseStatus UNAUTHORIZED
-
FORBIDDEN
public static final ResponseStatus FORBIDDEN
-
NOT_FOUND
public static final ResponseStatus NOT_FOUND
-
INTERNAL_SERVER_ERROR
public static final ResponseStatus INTERNAL_SERVER_ERROR
-
NOT_IMPLEMENTED
public static final ResponseStatus NOT_IMPLEMENTED
-
SERVICE_UNAVAILABLE
public static final ResponseStatus SERVICE_UNAVAILABLE
-
GATEWAY_TIMEOUT
public static final ResponseStatus GATEWAY_TIMEOUT
-
UNKNOWN
public static final ResponseStatus UNKNOWN
-
-
Method Detail
-
values
public static ResponseStatus[] 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 (ResponseStatus c : ResponseStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResponseStatus 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
-
get
public static ResponseStatus get(int code)
-
-