public enum SecurityRuleResult extends java.lang.Enum<SecurityRuleResult>
Enum Constant and Description |
---|
ALLOWED
The rule explicitly allows this request.
|
REJECTED
The rule explicitly rejects this request.
|
UNKNOWN
The rule has no information to make the determination.
|
Modifier and Type | Method and Description |
---|---|
static SecurityRuleResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SecurityRuleResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityRuleResult ALLOWED
public static final SecurityRuleResult REJECTED
public static final SecurityRuleResult UNKNOWN
public static SecurityRuleResult[] values()
for (SecurityRuleResult c : SecurityRuleResult.values()) System.out.println(c);
public static SecurityRuleResult 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