public enum WebBrowserCookieSettings extends java.lang.Enum<WebBrowserCookieSettings>
Enum Constant and Description |
---|
ALLOW_ALWAYS
allow Always
|
ALLOW_CURRENT_WEB_SITE
allow Current Web Site
|
ALLOW_FROM_WEBSITES_VISITED
allow From Websites Visited
|
BLOCK_ALWAYS
block Always
|
BROWSER_DEFAULT
browser Default
|
UNEXPECTED_VALUE
For WebBrowserCookieSettings values that were not expected from the service
|
Modifier and Type | Method and Description |
---|---|
static WebBrowserCookieSettings |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WebBrowserCookieSettings[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebBrowserCookieSettings BROWSER_DEFAULT
public static final WebBrowserCookieSettings BLOCK_ALWAYS
public static final WebBrowserCookieSettings ALLOW_CURRENT_WEB_SITE
public static final WebBrowserCookieSettings ALLOW_FROM_WEBSITES_VISITED
public static final WebBrowserCookieSettings ALLOW_ALWAYS
public static final WebBrowserCookieSettings UNEXPECTED_VALUE
public static WebBrowserCookieSettings[] values()
for (WebBrowserCookieSettings c : WebBrowserCookieSettings.values()) System.out.println(c);
public static WebBrowserCookieSettings 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