public enum SecurityRuleResult extends 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(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(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 null