public enum MAPProcedureCancellationReason extends Enum<MAPProcedureCancellationReason>
ProcedureCancellationReason ::= ENUMERATED { handoverCancellation(0), radioChannelRelease(1), networkPathRelease(2), callRelease(3), associatedProcedureFailure(4), tandemDialogueRelease(5), remoteOperationsFailure(6) }Added in ph2.
Used as field type by MAPMAP_UserAbortChoice
.
Enum Constant and Description |
---|
associatedProcedureFailure |
callRelease |
handoverCancellation |
networkPathRelease |
radioChannelRelease |
remoteOperationsFailure |
tandemDialogueRelease |
Modifier and Type | Method and Description |
---|---|
static MAPProcedureCancellationReason |
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 MAPProcedureCancellationReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MAPProcedureCancellationReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MAPProcedureCancellationReason handoverCancellation
public static final MAPProcedureCancellationReason radioChannelRelease
public static final MAPProcedureCancellationReason networkPathRelease
public static final MAPProcedureCancellationReason callRelease
public static final MAPProcedureCancellationReason associatedProcedureFailure
public static final MAPProcedureCancellationReason tandemDialogueRelease
public static final MAPProcedureCancellationReason remoteOperationsFailure
public static MAPProcedureCancellationReason[] values()
for (MAPProcedureCancellationReason c : MAPProcedureCancellationReason.values()) System.out.println(c);
public static MAPProcedureCancellationReason 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 MAPProcedureCancellationReason fromValue(int value)
value
- integer ASN.1 encoded valuepublic int intValue()