public enum FilterConfigChangeType extends java.lang.Enum<FilterConfigChangeType>
FilterConfig change types.| Enum Constant and Description |
|---|
CHANGE
The filter config has changed.
|
DISABLE
The filter has been disabled.
|
ENABLE
The filter has been enabled.
|
| Modifier and Type | Method and Description |
|---|---|
static FilterConfigChangeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterConfigChangeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterConfigChangeType ENABLE
public static final FilterConfigChangeType DISABLE
public static final FilterConfigChangeType CHANGE
public static FilterConfigChangeType[] values()
for (FilterConfigChangeType c : FilterConfigChangeType.values()) System.out.println(c);
public static FilterConfigChangeType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null