| Enum Constant and Description |
|---|
DELETE
An HTTP DELETE request.
|
GET
An HTTP GET request.
|
HEAD
An HTTP HEAD request.
|
POST
An HTTP POST request.
|
PUT
An HTTP PUT request.
|
| Modifier and Type | Method and Description |
|---|---|
static HttpVerb |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpVerb[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpVerb GET
public static final HttpVerb POST
public static final HttpVerb PUT
public static final HttpVerb DELETE
public static final HttpVerb HEAD
public static HttpVerb[] values()
for (HttpVerb c : HttpVerb.values()) System.out.println(c);
public static HttpVerb valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null