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