public static enum RestClient.HttpVerb extends Enum<RestClient.HttpVerb>
| Modifier and Type | Method and Description |
|---|---|
static RestClient.HttpVerb |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestClient.HttpVerb[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestClient.HttpVerb GET
public static final RestClient.HttpVerb POST
public static final RestClient.HttpVerb DELETE
public static final RestClient.HttpVerb HEAD
public static final RestClient.HttpVerb PUT
public static RestClient.HttpVerb[] values()
for (RestClient.HttpVerb c : RestClient.HttpVerb.values()) System.out.println(c);
public static RestClient.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 © 2018. All rights reserved.