public static enum AdminAPIAuthenticationException.FailCause extends java.lang.Enum<AdminAPIAuthenticationException.FailCause>
| Enum Constant and Description |
|---|
PASSWORD_DOESNT_MATCH
Password doesn't match with user password.
|
| Modifier and Type | Method and Description |
|---|---|
static AdminAPIAuthenticationException.FailCause |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AdminAPIAuthenticationException.FailCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdminAPIAuthenticationException.FailCause PASSWORD_DOESNT_MATCH
public static AdminAPIAuthenticationException.FailCause[] values()
for (AdminAPIAuthenticationException.FailCause c : AdminAPIAuthenticationException.FailCause.values()) System.out.println(c);
public static AdminAPIAuthenticationException.FailCause 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 nullCopyright © 2012-2023 anotheria.net. All Rights Reserved.