| SchemaDatatype Enumeration |
Enumerations for various data types supported in
the schema.
Namespace:
Bloomberglp.Blpapi
Assembly:
Bloomberglp.Blpapi (in Bloomberglp.Blpapi.dll) Version: 3.20.3.1
SyntaxPublic Enumeration Datatype
public enum class Datatype
Members|
| Member name | Value | Description |
|---|
| BOOL | 0 |
bool |
| BYTEARRAY | 256 |
An array of bytes containing Opaque data.
|
| CHAR | 1 |
Signed, 8 bit character (char).
|
| DATE | 2 |
See Datetime.
|
| DATETIME | 3 |
See Datetime.
|
| ENUMERATION | 257 |
An opaque Enumeration type.
|
| FLOAT32 | 5 |
32 bit floating point value (float).
|
| FLOAT64 | 6 |
64 bit floating point value (double).
|
| INT32 | 7 |
32 bit signed integer (int).
|
| INT64 | 8 |
64 bit signed integer (long)
|
| STRING | 9 |
System.String.
|
| TIME | 10 |
See Datetime.
|
| SEQUENCE | 258 |
A complex type containing an ordered collection of one or more
elements.
|
| CHOICE | 259 |
A complex type containing a selection from a set of elements.
|
Remarks| Data Type | Description |
|---|
| BOOL | Boolean |
| CHAR | Signed, 8 bit character |
| INT32 | 32 bit signed integer |
| INT64 | 64 bit signed integer |
| FLOAT32 | 32 bit floating point value (float) |
| FLOAT64 | 64 bit floating point value (double) |
| STRING | Nul terminated string (StringPointer) |
| BYTEARRAY | Opaque data (BytesPointer) |
| DATE | YYYY/MM/DD(Date) TIME HH:MM:SS.MMM(Time) |
| TIMESTAMP | Timestamp |
| SEQUENCE | Sequence |
| CHOICE | Choice |
See Also