public enum MAPMAP_ProviderAbortReason extends Enum<MAPMAP_ProviderAbortReason>
MAP-ProviderAbortReason ::= ENUMERATED { abnormalDialogue(0), invalidPDU(1) }Added in ph2. Spelt MAPMAP_ProviderAbortReason because it's generated from something in the MAP spec that's called MAP-ProviderAbortReason.
Used as field type by MAPMAP_ProviderAbortInfo
.
Enum Constant and Description |
---|
abnormalDialogue |
invalidPDU |
Modifier and Type | Method and Description |
---|---|
static MAPMAP_ProviderAbortReason |
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 MAPMAP_ProviderAbortReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MAPMAP_ProviderAbortReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MAPMAP_ProviderAbortReason abnormalDialogue
public static final MAPMAP_ProviderAbortReason invalidPDU
public static MAPMAP_ProviderAbortReason[] values()
for (MAPMAP_ProviderAbortReason c : MAPMAP_ProviderAbortReason.values()) System.out.println(c);
public static MAPMAP_ProviderAbortReason 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 MAPMAP_ProviderAbortReason fromValue(int value)
value
- integer ASN.1 encoded valuepublic int intValue()