public enum AuthDecision extends java.lang.Enum<AuthDecision>
| Enum Constant and Description |
|---|
ALLOWED |
EXPLICIT_DENY |
IMPLICIT_DENY |
| Modifier and Type | Method and Description |
|---|---|
static AuthDecision |
fromValue(java.lang.String value)
Use this in place of valueOf.
|
java.lang.String |
toString() |
static AuthDecision |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthDecision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthDecision ALLOWED
public static final AuthDecision EXPLICIT_DENY
public static final AuthDecision IMPLICIT_DENY
public static AuthDecision[] values()
for (AuthDecision c : AuthDecision.values()) System.out.println(c);
public static AuthDecision 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<AuthDecision>public static AuthDecision fromValue(java.lang.String value)
value - real valueCopyright © 2018 Amazon Web Services, Inc. All Rights Reserved.