public enum AuthenticationMethodKeyStrength extends java.lang.Enum<AuthenticationMethodKeyStrength>
Enum Constant and Description |
---|
NORMAL
normal
|
UNEXPECTED_VALUE
For AuthenticationMethodKeyStrength values that were not expected from the service
|
UNKNOWN
unknown
|
WEAK
weak
|
Modifier and Type | Method and Description |
---|---|
static AuthenticationMethodKeyStrength |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationMethodKeyStrength[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationMethodKeyStrength NORMAL
public static final AuthenticationMethodKeyStrength WEAK
public static final AuthenticationMethodKeyStrength UNKNOWN
public static final AuthenticationMethodKeyStrength UNEXPECTED_VALUE
public static AuthenticationMethodKeyStrength[] values()
for (AuthenticationMethodKeyStrength c : AuthenticationMethodKeyStrength.values()) System.out.println(c);
public static AuthenticationMethodKeyStrength 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 null