public static enum HttpManager.HttpMode extends Enum<HttpManager.HttpMode>
Enum Constant and Description |
---|
ASYNC |
FIREANDFORGET |
SYNC |
Modifier and Type | Method and Description |
---|---|
static HttpManager.HttpMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpManager.HttpMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpManager.HttpMode SYNC
public static final HttpManager.HttpMode ASYNC
public static final HttpManager.HttpMode FIREANDFORGET
public static HttpManager.HttpMode[] values()
for (HttpManager.HttpMode c : HttpManager.HttpMode.values()) System.out.println(c);
public static HttpManager.HttpMode 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.