public enum CAP3InitiatingEntity extends Enum<CAP3InitiatingEntity>
InitiatingEntity ::= ENUMERATED { mobileStation(0), sgsn(1), hlr(2), ggsn(3) }
Used as field type by CAP3GPRSEventSpecificInformation.DetachSpecificInformation
.
Used as field type by CAP3GPRSEventSpecificInformation.DisconnectSpecificInformation
.
Enum Constant and Description |
---|
ggsn |
hlr |
mobileStation |
sgsn |
Modifier and Type | Method and Description |
---|---|
static CAP3InitiatingEntity |
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 CAP3InitiatingEntity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CAP3InitiatingEntity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CAP3InitiatingEntity mobileStation
public static final CAP3InitiatingEntity sgsn
public static final CAP3InitiatingEntity hlr
public static final CAP3InitiatingEntity ggsn
public static CAP3InitiatingEntity[] values()
for (CAP3InitiatingEntity c : CAP3InitiatingEntity.values()) System.out.println(c);
public static CAP3InitiatingEntity 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 CAP3InitiatingEntity fromValue(int value)
value
- integer ASN.1 encoded valuepublic int intValue()