public enum ForceTypeOfHttpRequest extends Enum<ForceTypeOfHttpRequest>
| Enum Constant and Description |
|---|
FORCE_ASYNC_ONLY_HTTP_REQUESTS |
FORCE_SYNC_ONLY_HTTP_REQUESTS |
NONE |
PREFER_ASYNC_ONLY_HTTP_REQUESTS |
PREFER_SYNC_ONLY_HTTP_REQUESTS |
| Modifier and Type | Method and Description |
|---|---|
static ForceTypeOfHttpRequest |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ForceTypeOfHttpRequest[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ForceTypeOfHttpRequest NONE
public static final ForceTypeOfHttpRequest FORCE_ASYNC_ONLY_HTTP_REQUESTS
public static final ForceTypeOfHttpRequest FORCE_SYNC_ONLY_HTTP_REQUESTS
public static final ForceTypeOfHttpRequest PREFER_ASYNC_ONLY_HTTP_REQUESTS
public static final ForceTypeOfHttpRequest PREFER_SYNC_ONLY_HTTP_REQUESTS
public static ForceTypeOfHttpRequest[] values()
for (ForceTypeOfHttpRequest c : ForceTypeOfHttpRequest.values()) System.out.println(c);
public static ForceTypeOfHttpRequest 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 © 2016. All rights reserved.