public enum MAPRegionalSubscriptionResponse extends Enum<MAPRegionalSubscriptionResponse>
RegionalSubscriptionResponse ::= ENUMERATED { networkNode-AreaRestricted(0), -- Renamed from msc-AreaRestricted between R96 and R97. tooManyZoneCodes(1), zoneCodesConflict(2), regionalSubscNotSupported(3) }Added in ph2.
Used as field type by MAPInsertSubscriberDataRes
.
Used as field type by MAPDeleteSubscriberDataRes
.
Enum Constant and Description |
---|
networkNode_AreaRestricted |
regionalSubscNotSupported |
tooManyZoneCodes |
zoneCodesConflict |
Modifier and Type | Method and Description |
---|---|
static MAPRegionalSubscriptionResponse |
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 MAPRegionalSubscriptionResponse |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MAPRegionalSubscriptionResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MAPRegionalSubscriptionResponse networkNode_AreaRestricted
public static final MAPRegionalSubscriptionResponse tooManyZoneCodes
public static final MAPRegionalSubscriptionResponse zoneCodesConflict
public static final MAPRegionalSubscriptionResponse regionalSubscNotSupported
public static MAPRegionalSubscriptionResponse[] values()
for (MAPRegionalSubscriptionResponse c : MAPRegionalSubscriptionResponse.values()) System.out.println(c);
public static MAPRegionalSubscriptionResponse 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 MAPRegionalSubscriptionResponse fromValue(int value)
value
- integer ASN.1 encoded valuepublic int intValue()