Uses of Enum Class
de.uplanet.net.http.HTTP_METHOD
Packages that use HTTP_METHOD
-
Uses of HTTP_METHOD in de.uplanet.net.http
Methods in de.uplanet.net.http that return HTTP_METHODModifier 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.Methods in de.uplanet.net.http that return types with arguments of type HTTP_METHODModifier and TypeMethodDescriptionHttpMethodNotAllowedException.getAllowedMethods()
Get a copy of an enum set that contains all allowed methods.Methods in de.uplanet.net.http with parameters of type HTTP_METHODModifier 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.Method parameters in de.uplanet.net.http with type arguments of type HTTP_METHODModifier 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.Constructors in de.uplanet.net.http with parameters of type HTTP_METHODModifierConstructorDescriptionHttpMethodNotAllowedException
(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
.Constructor parameters in de.uplanet.net.http with type arguments of type HTTP_METHODModifierConstructorDescriptionHttpMethodNotAllowedException
(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
.