Enum HttpMethodWrapper
- java.lang.Object
-
- java.lang.Enum<HttpMethodWrapper>
-
- com.github.fmjsjx.libnetty.http.server.HttpMethodWrapper
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<HttpMethodWrapper>
public enum HttpMethodWrapper extends java.lang.Enum<HttpMethodWrapper>
Wrappers forHttpMethods.- Since:
- 1.1
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HttpMethodWrappervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static HttpMethodWrapper[]values()Returns an array containing the constants of this enum type, in the order they are declared.io.netty.handler.codec.http.HttpMethodwrapped()Returns the wrappedHttpMethod.
-
-
-
Enum Constant Detail
-
OPTIONS
public static final HttpMethodWrapper OPTIONS
The OPTIONS method.
-
GET
public static final HttpMethodWrapper GET
The GET method.
-
HEAD
public static final HttpMethodWrapper HEAD
The HEAD method.
-
POST
public static final HttpMethodWrapper POST
The POST method.
-
PUT
public static final HttpMethodWrapper PUT
The PUT method.
-
PATCH
public static final HttpMethodWrapper PATCH
The PATCH method.
-
DELETE
public static final HttpMethodWrapper DELETE
The DELETE method.
-
TRACE
public static final HttpMethodWrapper TRACE
The TRACE method.
-
CONNECT
public static final HttpMethodWrapper CONNECT
The CONNECT method.
-
-
Method Detail
-
values
public static HttpMethodWrapper[] 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 (HttpMethodWrapper c : HttpMethodWrapper.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HttpMethodWrapper 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
-
wrapped
public io.netty.handler.codec.http.HttpMethod wrapped()
Returns the wrappedHttpMethod.- Returns:
- a
HttpMethod
-
-