Java io.netty.handler.codec.http HttpMethod fields, constructors, methods, implement or subclass

Example usage for Java io.netty.handler.codec.http HttpMethod fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.handler.codec.http HttpMethod.

The text is from its open source code.

Field

HttpMethodOPTIONS
The OPTIONS method represents a request for information about the communication options available on the request/response chain identified by the Request-URI.
HttpMethodGET
The GET method means retrieve whatever information (in the form of an entity) is identified by the Request-URI.
HttpMethodHEAD
The HEAD method is identical to GET except that the server MUST NOT return a message-body in the response.
HttpMethodPOST
The POST method is used to request that the origin server accept the entity enclosed in the request as a new subordinate of the resource identified by the Request-URI in the Request-Line.
HttpMethodPUT
The PUT method requests that the enclosed entity be stored under the supplied Request-URI.
HttpMethodPATCH
The PATCH method requests that a set of changes described in the request entity be applied to the resource identified by the Request-URI.
HttpMethodDELETE
The DELETE method requests that the origin server delete the resource identified by the Request-URI.
HttpMethodTRACE
The TRACE method is used to invoke a remote, application-layer loop- back of the request message.
HttpMethodCONNECT
This specification reserves the method name CONNECT for use with a proxy that can dynamically switch to being a tunnel
AsciiStringname

Constructor

HttpMethod(String name)
Creates a new HTTP method with the specified name.

Method

booleanequals(Object o)
inthashCode()
StringtoString()
HttpMethodvalueOf(String name)
Returns the HttpMethod represented by the specified name.