public enum MAPPW_RegistrationFailureCause extends Enum<MAPPW_RegistrationFailureCause>
PW-RegistrationFailureCause ::=
ENUMERATED {
undetermined(0),
invalidFormat(1),
newPasswordsMismatch(2)
}
Present in ph1. Renamed from PasswordRegistrationFailureParam between ph1 and ph2.
Used as parameter type by MAPErrors.pw_RegistrationFailure.
| Enum Constant and Description |
|---|
invalidFormat |
newPasswordsMismatch |
undetermined |
| Modifier and Type | Method and Description |
|---|---|
static MAPPW_RegistrationFailureCause |
fromValue(int value)
Returns the enumeration constant for a given ASN.1 encoded value.
|
int |
intValue()
Gets the integer ASN.1 encoded value of this enumeration constant.
|
static MAPPW_RegistrationFailureCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MAPPW_RegistrationFailureCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MAPPW_RegistrationFailureCause undetermined
public static final MAPPW_RegistrationFailureCause invalidFormat
public static final MAPPW_RegistrationFailureCause newPasswordsMismatch
public static MAPPW_RegistrationFailureCause[] values()
for (MAPPW_RegistrationFailureCause c : MAPPW_RegistrationFailureCause.values()) System.out.println(c);
public static MAPPW_RegistrationFailureCause 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 static MAPPW_RegistrationFailureCause fromValue(int value)
value - integer ASN.1 encoded valuepublic int intValue()