Class HighLayerCompatibility.CodingStandard
- java.lang.Object
-
- java.lang.Number
-
- com.opencloud.util.NamedInteger
-
- com.opencloud.slee.resources.in.datatypes.cc.HighLayerCompatibility.CodingStandard
-
- All Implemented Interfaces:
DataObject
,Immutable
,Serializable
- Enclosing class:
- HighLayerCompatibility
public static final class HighLayerCompatibility.CodingStandard extends NamedInteger
Coding standard constants.The API offered by this class is as if the type were specified in ASN.1 as follows.
CodingStandard ::= ENUMERATED { ITU_T (0), ISO_IEC (1), NATIONAL (2), NETWORK (3) }
@extendible
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
_ISO_IEC
Coding standard value corresponding to ISO/IEC standard.static int
_ITU_T
Coding standard value corresponding to ITU-T standardized coding.static int
_NATIONAL
Coding standard value corresponding to National standard.static int
_NETWORK
Coding standard value corresponding to standard present on the network side of the interface.static HighLayerCompatibility.CodingStandard
ISO_IEC
Coding standard value corresponding to ISO/IEC standard.static HighLayerCompatibility.CodingStandard
ITU_T
Coding standard value corresponding to ITU-T standardized coding.static int
MAX_VALUE
Maximum value that a CodingStandard instance may take (3).static int
MIN_VALUE
Minimum value that a CodingStandard instance may take (0).static HighLayerCompatibility.CodingStandard
NATIONAL
Coding standard value corresponding to National standard.static HighLayerCompatibility.CodingStandard
NETWORK
Coding standard value corresponding to standard present on the network side of the interface.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HighLayerCompatibility.CodingStandard
fromValue(int value)
Returns a CodingStandard for a particular integer value.static HighLayerCompatibility.CodingStandard[]
namedValues()
Returns an array containing all of CodingStandard's named numbers.-
Methods inherited from class com.opencloud.util.NamedInteger
byteValue, clone, doubleValue, equals, floatValue, hashCode, intValue, isReadOnly, longValue, setReadOnly, shortValue, toString, valueOf
-
-
-
-
Field Detail
-
_ITU_T
public static final int _ITU_T
Coding standard value corresponding to ITU-T standardized coding.- See Also:
- Constant Field Values
-
_ISO_IEC
public static final int _ISO_IEC
Coding standard value corresponding to ISO/IEC standard.- See Also:
- Constant Field Values
-
_NATIONAL
public static final int _NATIONAL
Coding standard value corresponding to National standard.- See Also:
- Constant Field Values
-
_NETWORK
public static final int _NETWORK
Coding standard value corresponding to standard present on the network side of the interface.- See Also:
- Constant Field Values
-
ITU_T
public static final HighLayerCompatibility.CodingStandard ITU_T
Coding standard value corresponding to ITU-T standardized coding.
-
ISO_IEC
public static final HighLayerCompatibility.CodingStandard ISO_IEC
Coding standard value corresponding to ISO/IEC standard.
-
NATIONAL
public static final HighLayerCompatibility.CodingStandard NATIONAL
Coding standard value corresponding to National standard.
-
NETWORK
public static final HighLayerCompatibility.CodingStandard NETWORK
Coding standard value corresponding to standard present on the network side of the interface.
-
MIN_VALUE
public static final int MIN_VALUE
Minimum value that a CodingStandard instance may take (0).- See Also:
- Constant Field Values
-
MAX_VALUE
public static final int MAX_VALUE
Maximum value that a CodingStandard instance may take (3).- See Also:
- Constant Field Values
-
-
Method Detail
-
fromValue
public static HighLayerCompatibility.CodingStandard fromValue(int value)
Returns a CodingStandard for a particular integer value.- Returns:
- any known instance, or a new object
-
namedValues
public static HighLayerCompatibility.CodingStandard[] namedValues()
Returns an array containing all of CodingStandard's named numbers.- Returns:
- a new CodingStandard[]
-
-