public enum ErrorCode extends Enum<ErrorCode>
| Modifier and Type | Method and Description |
|---|---|
static ErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorCode ACCESS_TOKEN_EXISTS
public static final ErrorCode MISSING_ACCESS_TOKEN_ID_PARAM
public static final ErrorCode NO_SUCH_ACCESS_TOKEN_ID
public static final ErrorCode EXPIRED_ACCESS_TOKEN
public static final ErrorCode ACTION_DENIED
public static final ErrorCode NO_SUCH_TENANT
public static final ErrorCode BAD_CREDENTIALS
public static final ErrorCode DISABLED_PROFILE
public static final ErrorCode NO_SUCH_PROFILE
public static final ErrorCode NO_SUCH_TICKET
public static final ErrorCode NO_SUCH_PERSISTENT_LOGIN
public static final ErrorCode NO_SUCH_VERIFICATION_TOKEN
public static final ErrorCode INVALID_EMAIL_ADDRESS
public static final ErrorCode PERMISSION_ERROR
public static final ErrorCode ATTRIBUTE_ALREADY_DEFINED
public static final ErrorCode ATTRIBUTE_NOT_DEFINED
public static final ErrorCode PARAM_DESERIALIZATION_ERROR
public static final ErrorCode TENANT_EXISTS
public static final ErrorCode PROFILE_EXISTS
public static final ErrorCode INVALID_QUERY
public static final ErrorCode OTHER
public static ErrorCode[] values()
for (ErrorCode c : ErrorCode.values()) System.out.println(c);
public static ErrorCode 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 © 2015 CrafterCMS. All Rights Reserved.