public enum FirewallOutcome extends java.lang.Enum<FirewallOutcome>
| Enum Constant and Description |
|---|
ACCEPT
Determines that the request is approved and that processing should continue.
|
NEUTRAL
Determines that the request has no qualities that could either render a ACCEPT or REJECT outcome.
|
REJECT
Determines that the request is rejected and that processing should halt.
|
| Modifier and Type | Method and Description |
|---|---|
static FirewallOutcome |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FirewallOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FirewallOutcome ACCEPT
public static final FirewallOutcome REJECT
public static final FirewallOutcome NEUTRAL
public static FirewallOutcome[] values()
for (FirewallOutcome c : FirewallOutcome.values()) System.out.println(c);
public static FirewallOutcome 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