public enum FilterOutput extends Enum<FilterOutput>
| Enum Constant and Description |
|---|
BLOCK
The action has been blocked
|
PROCEED
The filter has let the action through
|
| Modifier and Type | Method and Description |
|---|---|
static FilterOutput |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterOutput[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterOutput PROCEED
public static final FilterOutput BLOCK
public static FilterOutput[] values()
for (FilterOutput c : FilterOutput.values()) System.out.println(c);
public static FilterOutput 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 © 2016–2023. All rights reserved.