Enum MAPSM_EnumeratedDeliveryFailureCause
- java.lang.Object
-
- java.lang.Enum<MAPSM_EnumeratedDeliveryFailureCause>
-
- MAPSM_EnumeratedDeliveryFailureCause
-
- All Implemented Interfaces:
Serializable
,Comparable<MAPSM_EnumeratedDeliveryFailureCause>
public enum MAPSM_EnumeratedDeliveryFailureCause extends Enum<MAPSM_EnumeratedDeliveryFailureCause>
API for MAP-ER-DataTypes.SM-EnumeratedDeliveryFailureCause. Generated from the following ASN.1 type definition.SM-EnumeratedDeliveryFailureCause ::= ENUMERATED { memoryCapacityExceeded(0), equipmentProtocolError(1), -- Renamed from msProtocolError between ph1 and ph2. equipmentNotSM-Equipped(2), -- Renamed from msNotEquiped between ph1 and ph2. unknownServiceCentre(3), sc-Congestion(4), -- Renamed from scCongestion between ph1 and ph2. invalidSME-Address(5), -- Renamed from invalidSmeAddress between ph1 and ph2. subscriberNotSC-Subscriber(6) -- Renamed from msNotScSubscriber between ph1 and ph2. }
Present in ph1 (anonymous before ph2).Used as field type by
MAPSM_DeliveryFailureCauseWithDiagnostic
.Used as field type by
MAPSM_DeliveryFailureCause
.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description equipmentNotSM_Equipped
equipmentProtocolError
invalidSME_Address
memoryCapacityExceeded
sc_Congestion
subscriberNotSC_Subscriber
unknownServiceCentre
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MAPSM_EnumeratedDeliveryFailureCause
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 MAPSM_EnumeratedDeliveryFailureCause
valueOf(String name)
Returns the enum constant of this type with the specified name.static MAPSM_EnumeratedDeliveryFailureCause[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
memoryCapacityExceeded
public static final MAPSM_EnumeratedDeliveryFailureCause memoryCapacityExceeded
-
equipmentProtocolError
public static final MAPSM_EnumeratedDeliveryFailureCause equipmentProtocolError
-
equipmentNotSM_Equipped
public static final MAPSM_EnumeratedDeliveryFailureCause equipmentNotSM_Equipped
-
unknownServiceCentre
public static final MAPSM_EnumeratedDeliveryFailureCause unknownServiceCentre
-
sc_Congestion
public static final MAPSM_EnumeratedDeliveryFailureCause sc_Congestion
-
invalidSME_Address
public static final MAPSM_EnumeratedDeliveryFailureCause invalidSME_Address
-
subscriberNotSC_Subscriber
public static final MAPSM_EnumeratedDeliveryFailureCause subscriberNotSC_Subscriber
-
-
Method Detail
-
values
public static MAPSM_EnumeratedDeliveryFailureCause[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MAPSM_EnumeratedDeliveryFailureCause c : MAPSM_EnumeratedDeliveryFailureCause.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MAPSM_EnumeratedDeliveryFailureCause valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
fromValue
public static MAPSM_EnumeratedDeliveryFailureCause fromValue(int value)
Returns the enumeration constant for a given ASN.1 encoded value.- Parameters:
value
- integer ASN.1 encoded value- Returns:
- enumeration constant
-
intValue
public int intValue()
Gets the integer ASN.1 encoded value of this enumeration constant.- Returns:
- encoded value
-
-