module CMF::Type
Defines the enum value for all types that can be stored in a CMF
message.
Constants
- BOOL_FALSE
False value, no additional data stored.
- BOOL_TRUE
True value, no additional data stored.
- BYTE_ARRAY
Varint
length (in bytes) first, then the binary encoded string.- DOUBLE
Double-precision (8 bytes) little-endian floating-point number.
- NEGATIVE_NUMBER
The value is multiplied by -1 and then serialized in the same manner as a
POSITIVE_NUMBER
.- POSITIVE_NUMBER
Varint
encoded integer.- STRING
Varint
length (in bytes) first, then the UTF-8 encoded string.