public enum MAPNotReachableReason extends Enum<MAPNotReachableReason>
NotReachableReason ::= ENUMERATED { msPurged(0), imsiDetached(1), restrictedArea(2), notRegistered(3) }Added in R96.
Used as field type by MAPSubscriberState
.
Used as field type by MAPPS_SubscriberState
.
Enum Constant and Description |
---|
imsiDetached |
msPurged |
notRegistered |
restrictedArea |
Modifier and Type | Method and Description |
---|---|
static MAPNotReachableReason |
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 MAPNotReachableReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MAPNotReachableReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MAPNotReachableReason msPurged
public static final MAPNotReachableReason imsiDetached
public static final MAPNotReachableReason restrictedArea
public static final MAPNotReachableReason notRegistered
public static MAPNotReachableReason[] values()
for (MAPNotReachableReason c : MAPNotReachableReason.values()) System.out.println(c);
public static MAPNotReachableReason 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 MAPNotReachableReason fromValue(int value)
value
- integer ASN.1 encoded valuepublic int intValue()