INTEGER

Primitive.

objectType:

INTEGER = 2 ;

Description:

The INTEGER object is used when you need to specify an integer number. It consists of the objectType Integer (the byte 01), followed by the Integer you are specifying.

Internal format:

IntegerPrimitiveObject {
    Integer objectType; // == INTEGER
    Integer value;
}

External format:

SerializedIntegerPrimitiveObject {
    Integer objectType; // == INTEGER
    Integer value;
}

Examples:

02 0C         INTEGER 12
02 80         INTEGER undefined
02 82 02 9A   INTEGER 666