Uses of Enum Class
de.uplanet.net.http.HTTP_METHOD
-
Uses of HTTP_METHOD in de.uplanet.net.http
Modifier and TypeMethodDescriptionstatic HTTP_METHOD
Returns the enum constant of this class with the specified name.static HTTP_METHOD[]
HTTP_METHOD.values()
Returns an array containing the constants of this enum class, in the order they are declared.Modifier and TypeMethodDescriptionHttpMethodNotAllowedException.getAllowedMethods()
Get a copy of an enum set that contains all allowed methods.Modifier and TypeMethodDescriptionstatic String
HTTP_METHOD.toHeaderValue
(HTTP_METHOD... p_methods) Convert the given HTTP methods to a comma-separated list suitable for being used as a HTTP header value.HTTP_METHOD.toNames
(HTTP_METHOD... p_methods) Convert the given HTTP methods to a list of strings.Modifier and TypeMethodDescriptionstatic String
HTTP_METHOD.toHeaderValue
(Collection<HTTP_METHOD> p_methods) Convert the given HTTP methods to a comma-separated list suitable for being used as a HTTP header value.HTTP_METHOD.toNames
(Collection<HTTP_METHOD> p_methods) Convert the given HTTP methods to a list of strings.ModifierConstructorDescriptionHttpMethodNotAllowedException
(HTTP_METHOD... p_allowedMethods) Create a HTTP exception with the status code405 Method Not Allowed
.HttpMethodNotAllowedException
(Throwable p_cause, HTTP_METHOD... p_allowedMethods) Create a HTTP exception with the status code405 Method Not Allowed
.ModifierConstructorDescriptionHttpMethodNotAllowedException
(Throwable p_cause, EnumSet<HTTP_METHOD> p_allowedMethods) Create a HTTP exception with the status code405 Method Not Allowed
.HttpMethodNotAllowedException
(EnumSet<HTTP_METHOD> p_allowedMethods) Create a HTTP exception with the status code405 Method Not Allowed
.