public static enum Filter.Result extends 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(String name)
Returns the Result for the given string.
|
static Filter.Result |
toResult(String name,
Filter.Result defaultResult)
Returns the Result for the given string.
|
static Filter.Result |
valueOf(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(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 Filter.Result toResult(String name)
name
- The Result enum name, case-insensitive. If null, returns, nullpublic static Filter.Result toResult(String name, Filter.Result defaultResult)
name
- The Result enum name, case-insensitive. If null, returns, defaultResultdefaultResult
- the Result to return if name is nullCopyright © 1999-2017. All Rights Reserved.
Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo, and the Apache Log4j logo are trademarks of The Apache Software Foundation.