public enum FilterKeyType extends Enum<FilterKeyType>
| Enum Constant and Description |
|---|
DEFAULT
No special filter is applied.
|
EXPRESSION
The expression type is used to define an individual expression based on the Spring Expression Language.
|
IP
IP based filtering.
|
| Modifier and Type | Method and Description |
|---|---|
static FilterKeyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterKeyType DEFAULT
public static final FilterKeyType IP
public static final FilterKeyType EXPRESSION
public static FilterKeyType[] values()
for (FilterKeyType c : FilterKeyType.values()) System.out.println(c);
public static FilterKeyType 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 Pivotal Software, Inc.. All rights reserved.