public enum EdgeCookiePolicy extends java.lang.Enum<EdgeCookiePolicy>
| Enum Constant and Description |
|---|
ALLOW
allow
|
BLOCK_ALL
block All
|
BLOCK_THIRD_PARTY
block Third Party
|
UNEXPECTED_VALUE
For EdgeCookiePolicy values that were not expected from the service
|
USER_DEFINED
user Defined
|
| Modifier and Type | Method and Description |
|---|---|
static EdgeCookiePolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EdgeCookiePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgeCookiePolicy USER_DEFINED
public static final EdgeCookiePolicy ALLOW
public static final EdgeCookiePolicy BLOCK_THIRD_PARTY
public static final EdgeCookiePolicy BLOCK_ALL
public static final EdgeCookiePolicy UNEXPECTED_VALUE
public static EdgeCookiePolicy[] values()
for (EdgeCookiePolicy c : EdgeCookiePolicy.values()) System.out.println(c);
public static EdgeCookiePolicy 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