public static enum CookieFilter.FilterType extends Enum<CookieFilter.FilterType>
| Enum Constant and Description |
|---|
PASS
pass cookies matched pattern.
|
SKIP
skip cookies matched pattern.
|
| Modifier and Type | Method and Description |
|---|---|
static CookieFilter.FilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CookieFilter.FilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CookieFilter.FilterType PASS
public static final CookieFilter.FilterType SKIP
public static CookieFilter.FilterType[] values()
for (CookieFilter.FilterType c : CookieFilter.FilterType.values()) System.out.println(c);
public static CookieFilter.FilterType 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 © 2017. All rights reserved.