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