public static enum HttpConfiguration.LibType extends java.lang.Enum<HttpConfiguration.LibType>
Enum Constant and Description |
---|
APACHE_HTTP_ASYNC_CLIENT
Apache HTTP AsyncClient.
|
APACHE_HTTP_CLIENT
Apache HTTP Client.
|
Modifier and Type | Method and Description |
---|---|
static HttpConfiguration.LibType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpConfiguration.LibType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpConfiguration.LibType APACHE_HTTP_CLIENT
public static final HttpConfiguration.LibType APACHE_HTTP_ASYNC_CLIENT
public static HttpConfiguration.LibType[] values()
for (HttpConfiguration.LibType c : HttpConfiguration.LibType.values()) System.out.println(c);
public static HttpConfiguration.LibType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null