Class GenericDigits.EncodingScheme
- java.lang.Object
-
- java.lang.Number
-
- com.opencloud.util.NamedInteger
-
- com.opencloud.slee.resources.in.datatypes.cc.GenericDigits.EncodingScheme
-
- All Implemented Interfaces:
DataObject
,Immutable
,Serializable
- Enclosing class:
- GenericDigits
public static final class GenericDigits.EncodingScheme extends NamedInteger
Encoding scheme constants.The API offered by this class is as if the type were specified in ASN.1 as follows.
EncodingScheme ::= ENUMERATED { BCD_EVEN (0), BCD_ODD (1), IA5 (2), BINARY (3), ... }
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
_BCD_EVEN
Encoding scheme value corresponding to BCD even.static int
_BCD_ODD
Encoding scheme value corresponding to BCD odd.static int
_BINARY
Encoding scheme value corresponding to binary coded.static int
_IA5
Encoding scheme value corresponding to IA5 character.static GenericDigits.EncodingScheme
BCD_EVEN
Encoding scheme value corresponding to BCD even.static GenericDigits.EncodingScheme
BCD_ODD
Encoding scheme value corresponding to BCD odd.static GenericDigits.EncodingScheme
BINARY
Encoding scheme value corresponding to binary coded.static GenericDigits.EncodingScheme
IA5
Encoding scheme value corresponding to IA5 character.static int
MAX_VALUE
Maximum value that a EncodingScheme instance may take (7).static int
MIN_VALUE
Minimum value that a EncodingScheme instance may take (0).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GenericDigits.EncodingScheme
fromValue(int value)
Returns a EncodingScheme for a particular integer value.static GenericDigits.EncodingScheme[]
namedValues()
Returns an array containing all of EncodingScheme'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
-
_BCD_EVEN
public static final int _BCD_EVEN
Encoding scheme value corresponding to BCD even.- See Also:
- Constant Field Values
-
_BCD_ODD
public static final int _BCD_ODD
Encoding scheme value corresponding to BCD odd.- See Also:
- Constant Field Values
-
_IA5
public static final int _IA5
Encoding scheme value corresponding to IA5 character.- See Also:
- Constant Field Values
-
_BINARY
public static final int _BINARY
Encoding scheme value corresponding to binary coded.- See Also:
- Constant Field Values
-
BCD_EVEN
public static final GenericDigits.EncodingScheme BCD_EVEN
Encoding scheme value corresponding to BCD even.
-
BCD_ODD
public static final GenericDigits.EncodingScheme BCD_ODD
Encoding scheme value corresponding to BCD odd.
-
IA5
public static final GenericDigits.EncodingScheme IA5
Encoding scheme value corresponding to IA5 character.
-
BINARY
public static final GenericDigits.EncodingScheme BINARY
Encoding scheme value corresponding to binary coded.
-
MIN_VALUE
public static final int MIN_VALUE
Minimum value that a EncodingScheme instance may take (0).- See Also:
- Constant Field Values
-
MAX_VALUE
public static final int MAX_VALUE
Maximum value that a EncodingScheme instance may take (7).- See Also:
- Constant Field Values
-
-
Method Detail
-
fromValue
public static GenericDigits.EncodingScheme fromValue(int value)
Returns a EncodingScheme for a particular integer value.- Returns:
- any known instance, or a new object
-
namedValues
public static GenericDigits.EncodingScheme[] namedValues()
Returns an array containing all of EncodingScheme's named numbers.- Returns:
- a new EncodingScheme[]
-
-