|
|||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
java.lang.Object org.jboss.netty.handler.codec.http.HttpMethod
public class HttpMethod
The request method of HTTP or its derived protocols, such as RTSP and ICAP.
字段摘要 | |
---|---|
static HttpMethod |
CONNECT
This specification reserves the method name CONNECT for use with a proxy that can dynamically switch to being a tunnel |
static HttpMethod |
DELETE
The DELETE method requests that the origin server delete the resource identified by the Request-URI. |
static HttpMethod |
GET
The GET method means retrieve whatever information (in the form of an entity) is identified by the Request-URI. |
static HttpMethod |
HEAD
The HEAD method is identical to GET except that the server MUST NOT return a message-body in the response. |
static HttpMethod |
OPTIONS
The OPTIONS method represents a request for information about the communication options available on the request/response chain identified by the Request-URI. |
static HttpMethod |
PATCH
The PATCH method requests that a set of changes described in the request entity be applied to the resource identified by the Request-URI. |
static HttpMethod |
POST
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. |
static HttpMethod |
PUT
The PUT method requests that the enclosed entity be stored under the supplied Request-URI. |
static HttpMethod |
TRACE
The TRACE method is used to invoke a remote, application-layer loop- back of the request message. |
构造方法摘要 | |
---|---|
HttpMethod(java.lang.String name)
Creates a new HTTP method with the specified name. |
方法摘要 | |
---|---|
int |
compareTo(HttpMethod o)
|
boolean |
equals(java.lang.Object o)
|
java.lang.String |
getName()
Returns the name of this method. |
int |
hashCode()
|
java.lang.String |
toString()
|
static HttpMethod |
valueOf(java.lang.String name)
Returns the HttpMethod represented by the specified name. |
从类 java.lang.Object 继承的方法 |
---|
getClass, notify, notifyAll, wait, wait, wait |
字段详细信息 |
---|
public static final HttpMethod OPTIONS
public static final HttpMethod GET
public static final HttpMethod HEAD
public static final HttpMethod POST
public static final HttpMethod PUT
public static final HttpMethod PATCH
public static final HttpMethod DELETE
public static final HttpMethod TRACE
public static final HttpMethod CONNECT
构造方法详细信息 |
---|
public HttpMethod(java.lang.String name)
方法详细信息 |
---|
public static HttpMethod valueOf(java.lang.String name)
HttpMethod
represented by the specified name.
If the specified name is a standard HTTP method name, a cached instance
will be returned. Otherwise, a new instance will be returned.
public java.lang.String getName()
public int hashCode()
java.lang.Object
中的 hashCode
public boolean equals(java.lang.Object o)
java.lang.Object
中的 equals
public java.lang.String toString()
java.lang.Object
中的 toString
public int compareTo(HttpMethod o)
java.lang.Comparable<HttpMethod>
中的 compareTo
|
|||||||||
上一个类 下一个类 | 框架 无框架 | ||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |