public static enum AzResult.Decision extends Enum<AzResult.Decision>
| Enum Constant and Description |
|---|
DENY |
INDETERMINATE |
NOT_APPLICABLE |
PERMIT |
| Modifier and Type | Method and Description |
|---|---|
static AzResult.Decision |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AzResult.Decision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AzResult.Decision PERMIT
public static final AzResult.Decision DENY
public static final AzResult.Decision INDETERMINATE
public static final AzResult.Decision NOT_APPLICABLE
public static AzResult.Decision[] values()
for (AzResult.Decision c : AzResult.Decision.values()) System.out.println(c);
public static AzResult.Decision 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 © 2013. All Rights Reserved.