public static enum DMXHttpClient.HTTPMethod extends Enum<DMXHttpClient.HTTPMethod>
Enum Constant and Description |
---|
DELETE
HTTP DELETE method
|
GET
HTTP GET method
|
HEAD
HTTP HEAD method
|
OPTIONS
HTTP OPTIONS method
|
POST
HTTP POST method
|
PUT
HTTP PUT method
|
Modifier and Type | Method and Description |
---|---|
static DMXHttpClient.HTTPMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DMXHttpClient.HTTPMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DMXHttpClient.HTTPMethod GET
public static final DMXHttpClient.HTTPMethod POST
public static final DMXHttpClient.HTTPMethod PUT
public static final DMXHttpClient.HTTPMethod DELETE
public static final DMXHttpClient.HTTPMethod HEAD
public static final DMXHttpClient.HTTPMethod OPTIONS
public static DMXHttpClient.HTTPMethod[] values()
for (DMXHttpClient.HTTPMethod c : DMXHttpClient.HTTPMethod.values()) System.out.println(c);
public static DMXHttpClient.HTTPMethod 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 © 2012-2014 Vektor Software. All Rights Reserved.