Enum Constant and Description |
---|
DELETE |
GET |
HEAD |
OPTIONS |
PATCH |
POST |
PUT |
TRACE |
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 HEAD
public static final HttpVerb DELETE
public static final HttpVerb PATCH
public static final HttpVerb OPTIONS
public static final HttpVerb TRACE
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