Class MAPMonitoringMode
- java.lang.Object
-
- java.lang.Number
-
- com.opencloud.util.NamedInteger
-
- MAPMonitoringMode
-
- All Implemented Interfaces:
DataObject
,Immutable
,Serializable
public class MAPMonitoringMode extends NamedInteger
API for MAP-CH-DataTypes.MonitoringMode. Generated from the following ASN.1 type definition.MonitoringMode ::= ENUMERATED { a-side(0), b-side(1), ... }
Added in R97. Exception handling: reception of values 2-10 shall be mapped 'a-side'; reception of values > 10 shall be mapped to 'b-side'.Used as field type by
MAPCallReportData
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
_a_side
Integer value of the constant a_side.static int
_b_side
Integer value of the constant b_side.static MAPMonitoringMode
a_side
Reference to value of the constant a_side.static MAPMonitoringMode
b_side
Reference to value of the constant b_side.static int
MAX_VALUE
Maximum value that a com.opencloud.slee.resources.cgin.map.MAPMonitoringMode instance may take (1).static int
MIN_VALUE
Minimum value that a com.opencloud.slee.resources.cgin.map.MAPMonitoringMode instance may take (0).
-
Constructor Summary
Constructors Modifier Constructor Description protected
MAPMonitoringMode(int value)
Constructs an enumeration constant for the given numeric value.protected
MAPMonitoringMode(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 MAPMonitoringMode
fromValue(int value)
Finds or constructs an enumeration constant for the given numeric value.static MAPMonitoringMode[]
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
-
_a_side
public static final int _a_side
Integer value of the constant a_side.- See Also:
- Constant Field Values
-
a_side
public static final MAPMonitoringMode a_side
Reference to value of the constant a_side.
-
_b_side
public static final int _b_side
Integer value of the constant b_side.- See Also:
- Constant Field Values
-
b_side
public static final MAPMonitoringMode b_side
Reference to value of the constant b_side.
-
MIN_VALUE
public static final int MIN_VALUE
Minimum value that a com.opencloud.slee.resources.cgin.map.MAPMonitoringMode 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.MAPMonitoringMode instance may take (1).- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MAPMonitoringMode
protected MAPMonitoringMode(int value, String description)
Constructs an enumeration constant for the given numeric value, noting its name.- Parameters:
value
- numeric valuedescription
- name of number
-
MAPMonitoringMode
protected MAPMonitoringMode(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 MAPMonitoringMode 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 MAPMonitoringMode[] namedValues()
Returns an array containing all the enumeration constants referenced by fields.- Returns:
- array of enumeration constants
-
-