public static enum Filter.Result extends java.lang.Enum<Filter.Result>
Enum Constant and Description |
---|
ACCEPT
The event will be processed without further filtering based on the log Level.
|
DENY
The event should not be processed.
|
NEUTRAL
No decision could be made, further filtering should occur.
|
Modifier and Type | Method and Description |
---|---|
static Filter.Result |
toResult(java.lang.String name)
Returns the Result for the given string.
|
static Filter.Result |
toResult(java.lang.String name,
Filter.Result defaultResult)
Returns the Result for the given string.
|
static Filter.Result |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Filter.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Filter.Result ACCEPT
public static final Filter.Result NEUTRAL
public static final Filter.Result DENY
public static Filter.Result[] values()
for (Filter.Result c : Filter.Result.values()) System.out.println(c);
public static Filter.Result 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 nullpublic static Filter.Result toResult(java.lang.String name)
name
- The Result enum name, case-insensitive. If null, returns, nullpublic static Filter.Result toResult(java.lang.String name, Filter.Result defaultResult)
name
- The Result enum name, case-insensitive. If null, returns, defaultResultdefaultResult
- the Result to return if name is null