public enum MAPProtocolId extends Enum<MAPProtocolId>
ProtocolId ::=
ENUMERATED {
gsm-0408(1),
gsm-0806(2),
gsm-BSSMAP(3), -- Renamed from gsm-0808-bssmap between ph1 and ph2. Since R96: Value 3 is reserved and must not be used.
ets-300102-1(4)
}
Present in ph1.
Used as field type by MAPExternalSignalInfo.
| Enum Constant and Description |
|---|
ets_300102_1 |
gsm_0408 |
gsm_0806 |
gsm_BSSMAP |
| Modifier and Type | Method and Description |
|---|---|
static MAPProtocolId |
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 MAPProtocolId |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MAPProtocolId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MAPProtocolId gsm_0408
public static final MAPProtocolId gsm_0806
public static final MAPProtocolId gsm_BSSMAP
public static final MAPProtocolId ets_300102_1
public static MAPProtocolId[] values()
for (MAPProtocolId c : MAPProtocolId.values()) System.out.println(c);
public static MAPProtocolId 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 MAPProtocolId fromValue(int value)
value - integer ASN.1 encoded valuepublic int intValue()