public enum AdalErrorCode extends Enum<AdalErrorCode>
| Enum Constant and Description |
|---|
AUTHORIZATION_PENDING |
INTERACTION_REQUIRED |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static AdalErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdalErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdalErrorCode UNKNOWN
public static final AdalErrorCode AUTHORIZATION_PENDING
public static final AdalErrorCode INTERACTION_REQUIRED
public static AdalErrorCode[] values()
for (AdalErrorCode c : AdalErrorCode.values()) System.out.println(c);
public static AdalErrorCode 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 nullpublic String toString()
toString in class Enum<AdalErrorCode>Copyright © 2013–2019. All rights reserved.