Class MAPDefaultCallHandling
- java.lang.Object
-
- java.lang.Number
-
- com.opencloud.util.NamedInteger
-
- MAPDefaultCallHandling
-
- All Implemented Interfaces:
DataObject
,Immutable
,Serializable
public class MAPDefaultCallHandling extends NamedInteger
API for MAP-MS-DataTypes.DefaultCallHandling. Generated from the following ASN.1 type definition.DefaultCallHandling ::= ENUMERATED { continueCall(0), releaseCall(1), ... }
Added in R96. Exception handling: reception of values in range 2-31 shall be treated as 'continueCall'; reception of values greater than 31 shall be treated as 'releaseCall'.Used as field type by
MAPO_BcsmCamelTDPData
.Used as field type by
MAPT_BcsmCamelTDPData
.Used as field type by
MAPDP_AnalysedInfoCriterium
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
_continueCall
Integer value of the constant continueCall.static int
_releaseCall
Integer value of the constant releaseCall.static MAPDefaultCallHandling
continueCall
Reference to value of the constant continueCall.static int
MAX_VALUE
Maximum value that a com.opencloud.slee.resources.cgin.map.MAPDefaultCallHandling instance may take (1).static int
MIN_VALUE
Minimum value that a com.opencloud.slee.resources.cgin.map.MAPDefaultCallHandling instance may take (0).static MAPDefaultCallHandling
releaseCall
Reference to value of the constant releaseCall.
-
Constructor Summary
Constructors Modifier Constructor Description protected
MAPDefaultCallHandling(int value)
Constructs an enumeration constant for the given numeric value.protected
MAPDefaultCallHandling(int value, String description)
Constructs an enumeration constant for the given numeric value, noting its name.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MAPDefaultCallHandling
fromValue(int value)
Finds or constructs an enumeration constant for the given numeric value.static MAPDefaultCallHandling[]
namedValues()
Returns an array containing all the enumeration constants referenced by fields.-
Methods inherited from class com.opencloud.util.NamedInteger
byteValue, clone, doubleValue, equals, floatValue, hashCode, intValue, isReadOnly, longValue, setReadOnly, shortValue, toString, valueOf
-
-
-
-
Field Detail
-
_continueCall
public static final int _continueCall
Integer value of the constant continueCall.- See Also:
- Constant Field Values
-
continueCall
public static final MAPDefaultCallHandling continueCall
Reference to value of the constant continueCall.
-
_releaseCall
public static final int _releaseCall
Integer value of the constant releaseCall.- See Also:
- Constant Field Values
-
releaseCall
public static final MAPDefaultCallHandling releaseCall
Reference to value of the constant releaseCall.
-
MIN_VALUE
public static final int MIN_VALUE
Minimum value that a com.opencloud.slee.resources.cgin.map.MAPDefaultCallHandling instance may take (0).- See Also:
- Constant Field Values
-
MAX_VALUE
public static final int MAX_VALUE
Maximum value that a com.opencloud.slee.resources.cgin.map.MAPDefaultCallHandling instance may take (1).- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MAPDefaultCallHandling
protected MAPDefaultCallHandling(int value, String description)
Constructs an enumeration constant for the given numeric value, noting its name.- Parameters:
value
- numeric valuedescription
- name of number
-
MAPDefaultCallHandling
protected MAPDefaultCallHandling(int value)
Constructs an enumeration constant for the given numeric value. Suitable for use as decode method.- Parameters:
value
- numeric value
-
-
Method Detail
-
fromValue
public static MAPDefaultCallHandling fromValue(int value)
Finds or constructs an enumeration constant for the given numeric value.- Parameters:
value
- integer- Returns:
- one of the fields if suitable, else a newly constructed object
-
namedValues
public static MAPDefaultCallHandling[] namedValues()
Returns an array containing all the enumeration constants referenced by fields.- Returns:
- array of enumeration constants
-
-