public enum FilterTypes extends Enum<FilterTypes>
| Enum Constant and Description |
|---|
ERRORRESPONSECODEFILTER |
REQUESTEXCEPTIONFILTER |
REQUESTFILTER |
REQUESTWRITEFILTER |
RESPONSEEXCEPTIONFILTER |
RESPONSEFILTER |
RESPONSEREADFILTER |
SUCCESSRESPONSECODEFILTER |
| Modifier and Type | Method and Description |
|---|---|
static FilterTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterTypes REQUESTEXCEPTIONFILTER
public static final FilterTypes REQUESTFILTER
public static final FilterTypes REQUESTWRITEFILTER
public static final FilterTypes RESPONSEEXCEPTIONFILTER
public static final FilterTypes RESPONSEFILTER
public static final FilterTypes RESPONSEREADFILTER
public static final FilterTypes ERRORRESPONSECODEFILTER
public static final FilterTypes SUCCESSRESPONSECODEFILTER
public static FilterTypes[] values()
for (FilterTypes c : FilterTypes.values()) System.out.println(c);
public static FilterTypes 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 © 2016. All rights reserved.