HttpMethod.@Deprecated public enum HttpVerb extends Enum<HttpVerb>
| Enum Constant and Description |
|---|
DELETE
Deprecated.
|
GET
Deprecated.
|
POST
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static HttpVerb |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static HttpVerb[] |
values()
Deprecated.
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 DELETE
public static HttpVerb[] values()
for (HttpVerb c : HttpVerb.values()) System.out.println(c);
public static HttpVerb valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All rights reserved.