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