public enum FilterReply extends Enum<FilterReply>
Filter and
ch.qos.logback.classic.turbo.TurboFilter abstract classes.
Based on the order that the FilterReply values are declared,
FilterReply.ACCEPT.compareTo(FilterReply.DENY) will return
a positive value.| Modifier and Type | Method and Description |
|---|---|
static FilterReply |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterReply[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterReply DENY
public static final FilterReply NEUTRAL
public static final FilterReply ACCEPT
public static FilterReply[] values()
for (FilterReply c : FilterReply.values()) System.out.println(c);
public static FilterReply 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 © 2005–2017 QOS.ch. All rights reserved.