public enum RedirectFilter extends Enum<RedirectFilter>
| Enum Constant and Description |
|---|
all |
nonredirects |
redirects |
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Deprecated.
do not rely on enum names
|
static RedirectFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedirectFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedirectFilter all
public static final RedirectFilter redirects
public static final RedirectFilter nonredirects
public static RedirectFilter[] values()
for (RedirectFilter c : RedirectFilter.values()) System.out.println(c);
public static RedirectFilter 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 null@Deprecated public String toString()
toString in class Enum<RedirectFilter>Copyright © 2013. All Rights Reserved.