public static enum Options.Option extends Enum<Options.Option>
| Enum Constant and Description |
|---|
ASYNCHTTPCLIENT |
CONNECTION_TIMEOUT |
COOKIES |
DEFAULT_HEADERS |
HTTPCLIENT |
SOCKET_TIMEOUT |
| Modifier and Type | Method and Description |
|---|---|
static Options.Option |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Options.Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Options.Option HTTPCLIENT
public static final Options.Option ASYNCHTTPCLIENT
public static final Options.Option CONNECTION_TIMEOUT
public static final Options.Option SOCKET_TIMEOUT
public static final Options.Option DEFAULT_HEADERS
public static final Options.Option COOKIES
public static Options.Option[] values()
for (Options.Option c : Options.Option.values()) System.out.println(c);
public static Options.Option 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 © 2013–2014 Wisdom Framework. All rights reserved.