public enum MAPAlertReason extends Enum<MAPAlertReason>
AlertReason ::=
ENUMERATED {
ms-Present(0),
memoryAvailable(1)
}
Added in ph2.
Used as field type by MAPReadyForSM_Arg.
| Enum Constant and Description |
|---|
memoryAvailable |
ms_Present |
| Modifier and Type | Method and Description |
|---|---|
static MAPAlertReason |
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 MAPAlertReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MAPAlertReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MAPAlertReason ms_Present
public static final MAPAlertReason memoryAvailable
public static MAPAlertReason[] values()
for (MAPAlertReason c : MAPAlertReason.values()) System.out.println(c);
public static MAPAlertReason 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 MAPAlertReason fromValue(int value)
value - integer ASN.1 encoded valuepublic int intValue()