Class MAPAccessType
- java.lang.Object
-
- java.lang.Number
-
- com.opencloud.util.NamedInteger
-
- MAPAccessType
-
- All Implemented Interfaces:
DataObject
,Immutable
,Serializable
public class MAPAccessType extends NamedInteger
API for MAP-MS-DataTypes.AccessType. Generated from the following ASN.1 type definition.AccessType ::= ENUMERATED { call(0), emergencyCall(1), locationUpdating(2), supplementaryService(3), shortMessage(4), gprsAttach(5), routingAreaUpdating(6), serviceRequest(7), pdpContextActivation(8), pdpContextDeactivation(9), ... gprsDetach(10) }
Added in release 4. Exception handling: received values greater than 10 shall be ignored.Used as field type by
MAPAuthenticationFailureReportArg
.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
_call
Integer value of the constant call.static int
_emergencyCall
Integer value of the constant emergencyCall.static int
_gprsAttach
Integer value of the constant gprsAttach.static int
_gprsDetach
Integer value of the constant gprsDetach.static int
_locationUpdating
Integer value of the constant locationUpdating.static int
_pdpContextActivation
Integer value of the constant pdpContextActivation.static int
_pdpContextDeactivation
Integer value of the constant pdpContextDeactivation.static int
_routingAreaUpdating
Integer value of the constant routingAreaUpdating.static int
_serviceRequest
Integer value of the constant serviceRequest.static int
_shortMessage
Integer value of the constant shortMessage.static int
_supplementaryService
Integer value of the constant supplementaryService.static MAPAccessType
call
Reference to value of the constant call.static MAPAccessType
emergencyCall
Reference to value of the constant emergencyCall.static MAPAccessType
gprsAttach
Reference to value of the constant gprsAttach.static MAPAccessType
gprsDetach
Reference to value of the constant gprsDetach.static MAPAccessType
locationUpdating
Reference to value of the constant locationUpdating.static int
MAX_VALUE
Maximum value that a com.opencloud.slee.resources.cgin.map.MAPAccessType instance may take (10).static int
MIN_VALUE
Minimum value that a com.opencloud.slee.resources.cgin.map.MAPAccessType instance may take (0).static MAPAccessType
pdpContextActivation
Reference to value of the constant pdpContextActivation.static MAPAccessType
pdpContextDeactivation
Reference to value of the constant pdpContextDeactivation.static MAPAccessType
routingAreaUpdating
Reference to value of the constant routingAreaUpdating.static MAPAccessType
serviceRequest
Reference to value of the constant serviceRequest.static MAPAccessType
shortMessage
Reference to value of the constant shortMessage.static MAPAccessType
supplementaryService
Reference to value of the constant supplementaryService.
-
Constructor Summary
Constructors Modifier Constructor Description protected
MAPAccessType(int value)
Constructs an enumeration constant for the given numeric value.protected
MAPAccessType(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 MAPAccessType
fromValue(int value)
Finds or constructs an enumeration constant for the given numeric value.static MAPAccessType[]
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
-
_call
public static final int _call
Integer value of the constant call.- See Also:
- Constant Field Values
-
call
public static final MAPAccessType call
Reference to value of the constant call.
-
_emergencyCall
public static final int _emergencyCall
Integer value of the constant emergencyCall.- See Also:
- Constant Field Values
-
emergencyCall
public static final MAPAccessType emergencyCall
Reference to value of the constant emergencyCall.
-
_locationUpdating
public static final int _locationUpdating
Integer value of the constant locationUpdating.- See Also:
- Constant Field Values
-
locationUpdating
public static final MAPAccessType locationUpdating
Reference to value of the constant locationUpdating.
-
_supplementaryService
public static final int _supplementaryService
Integer value of the constant supplementaryService.- See Also:
- Constant Field Values
-
supplementaryService
public static final MAPAccessType supplementaryService
Reference to value of the constant supplementaryService.
-
_shortMessage
public static final int _shortMessage
Integer value of the constant shortMessage.- See Also:
- Constant Field Values
-
shortMessage
public static final MAPAccessType shortMessage
Reference to value of the constant shortMessage.
-
_gprsAttach
public static final int _gprsAttach
Integer value of the constant gprsAttach.- See Also:
- Constant Field Values
-
gprsAttach
public static final MAPAccessType gprsAttach
Reference to value of the constant gprsAttach.
-
_routingAreaUpdating
public static final int _routingAreaUpdating
Integer value of the constant routingAreaUpdating.- See Also:
- Constant Field Values
-
routingAreaUpdating
public static final MAPAccessType routingAreaUpdating
Reference to value of the constant routingAreaUpdating.
-
_serviceRequest
public static final int _serviceRequest
Integer value of the constant serviceRequest.- See Also:
- Constant Field Values
-
serviceRequest
public static final MAPAccessType serviceRequest
Reference to value of the constant serviceRequest.
-
_pdpContextActivation
public static final int _pdpContextActivation
Integer value of the constant pdpContextActivation.- See Also:
- Constant Field Values
-
pdpContextActivation
public static final MAPAccessType pdpContextActivation
Reference to value of the constant pdpContextActivation.
-
_pdpContextDeactivation
public static final int _pdpContextDeactivation
Integer value of the constant pdpContextDeactivation.- See Also:
- Constant Field Values
-
pdpContextDeactivation
public static final MAPAccessType pdpContextDeactivation
Reference to value of the constant pdpContextDeactivation.
-
_gprsDetach
public static final int _gprsDetach
Integer value of the constant gprsDetach.- See Also:
- Constant Field Values
-
gprsDetach
public static final MAPAccessType gprsDetach
Reference to value of the constant gprsDetach.
-
MIN_VALUE
public static final int MIN_VALUE
Minimum value that a com.opencloud.slee.resources.cgin.map.MAPAccessType 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.MAPAccessType instance may take (10).- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MAPAccessType
protected MAPAccessType(int value, String description)
Constructs an enumeration constant for the given numeric value, noting its name.- Parameters:
value
- numeric valuedescription
- name of number
-
MAPAccessType
protected MAPAccessType(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 MAPAccessType 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 MAPAccessType[] namedValues()
Returns an array containing all the enumeration constants referenced by fields.- Returns:
- array of enumeration constants
-
-