public enum FilterLocation extends Enum<FilterLocation>
| Enum Constant and Description |
|---|
AFTER_ENCODING |
BEFORE_DECORATION |
BEFORE_DISPATCH |
BEFORE_LOGIN |
| Modifier and Type | Method and Description |
|---|---|
static FilterLocation |
parse(String value)
Parses a filter location from a string.
|
static FilterLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterLocation AFTER_ENCODING
public static final FilterLocation BEFORE_LOGIN
public static final FilterLocation BEFORE_DECORATION
public static final FilterLocation BEFORE_DISPATCH
public static FilterLocation[] values()
for (FilterLocation c : FilterLocation.values()) System.out.println(c);
public static FilterLocation 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 nullpublic static FilterLocation parse(String value) throws IllegalArgumentException
value - The filter location as a stringIllegalArgumentException - If the filter string is null or can't be matched to a filter location enumCopyright © 2014 Atlassian. All rights reserved.