public enum CodeSet extends Enum<CodeSet>
| Code | Description |
|---|---|
| 0x0 | RESERVED |
| 0x1 | The IDENTIFIER field shall contain binary values. |
| 0x2 | The IDENTIFIER field shall contain ASCII printable characters (i.e., code values 20h through 7Eh) |
| 0x3 | The IDENTIFIER field shall contain ISO/IEC 10646-1 (UTF-8) codes |
| 0x4 - 0xf | RESERVED |
IdentificationDescriptor| Enum Constant and Description |
|---|
ASCII_PRINTABLE_VALUES
The IDENTIFIER field shall contain ASCII printable characters.
|
BINARY_VALUES
The IDENTIFIER field shall contain binary values.
|
RESERVED
This value is reserved.
|
UTF8_CODES
The IDENTIFIER field shall contain ISO/IEC 10646-1 (UTF-8) codes:
|
| Modifier and Type | Method and Description |
|---|---|
byte |
getValue()
Returns serialized value of this object.
|
static CodeSet |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodeSet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeSet RESERVED
public static final CodeSet BINARY_VALUES
public static final CodeSet ASCII_PRINTABLE_VALUES
public static final CodeSet UTF8_CODES
public static CodeSet[] values()
for (CodeSet c : CodeSet.values()) System.out.println(c);
public static CodeSet valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic final byte getValue()
Copyright © 2013 University of Konstanz, Distributed Systems Group. All Rights Reserved.