public enum MAPSubscriberStatus extends Enum<MAPSubscriberStatus>
SubscriberStatus ::=
ENUMERATED {
serviceGranted(0),
operatorDeterminedBarring(1) -- Renamed from operatorOGCallBarring between ph1 and ph2.
}
Present in ph1.
Used as field type by MAPInsertSubscriberDataArg_v1.
Used as field type by MAPInsertSubscriberDataArg.
Used as field type by MAPSubscriberData.
| Enum Constant and Description |
|---|
operatorDeterminedBarring |
serviceGranted |
| Modifier and Type | Method and Description |
|---|---|
static MAPSubscriberStatus |
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 MAPSubscriberStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MAPSubscriberStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MAPSubscriberStatus serviceGranted
public static final MAPSubscriberStatus operatorDeterminedBarring
public static MAPSubscriberStatus[] values()
for (MAPSubscriberStatus c : MAPSubscriberStatus.values()) System.out.println(c);
public static MAPSubscriberStatus 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 MAPSubscriberStatus fromValue(int value)
value - integer ASN.1 encoded valuepublic int intValue()