Enum DataType
Specifies the data type of entities such as Dimensions, Attributes, ArrayMetadata and GroupMetadata.
Namespace: TileDB.CSharp
Assembly: TileDB.CSharp.dll
Syntax
public enum DataType : uint
Fields
Name | Description |
---|---|
Blob | Binary data. |
Boolean | A boolean value. |
DateTimeAttosecond | A date and time, counted as the signed 64-bit number of attoseconds since the Unix epoch (January 1 1970 at midnight). |
DateTimeDay | A date and time, counted as the signed 64-bit number of days since the Unix epoch (January 1 1970 at midnight). |
DateTimeFemtosecond | A date and time, counted as the signed 64-bit number of femtoseconds since the Unix epoch (January 1 1970 at midnight). |
DateTimeHour | A date and time, counted as the signed 64-bit number of hours since the Unix epoch (January 1 1970 at midnight). |
DateTimeMicrosecond | A date and time, counted as the signed 64-bit number of microseconds since the Unix epoch (January 1 1970 at midnight). |
DateTimeMillisecond | A date and time, counted as the signed 64-bit number of milliseconds since the Unix epoch (January 1 1970 at midnight). |
DateTimeMinute | A date and time, counted as the signed 64-bit number of minutes since the Unix epoch (January 1 1970 at midnight). |
DateTimeMonth | A date and time, counted as the signed 64-bit number of months since the Unix epoch (January 1 1970 at midnight). |
DateTimeNanosecond | A date and time, counted as the signed 64-bit number of nanoseconds since the Unix epoch (January 1 1970 at midnight). |
DateTimePicosecond | A date and time, counted as the signed 64-bit number of picoseconds since the Unix epoch (January 1 1970 at midnight). |
DateTimeSecond | A date and time, counted as the signed 64-bit number of seconds since the Unix epoch (January 1 1970 at midnight). |
DateTimeWeek | A date and time, counted as the signed 64-bit number of weeks since the Unix epoch (January 1 1970 at midnight). |
DateTimeYear | A date and time, counted as the signed 64-bit number of years since the Unix epoch (January 1 1970 at midnight). |
Float32 | A 32-bit floating-point number. |
Float64 | A 64-bit floating-point number. |
GeometryWkb | A geometry in Well-Known Binary (WKB) format. |
GeometryWkt | A geometry in Well-Known Text (WKT) format. |
Int16 | A signed 16-bit integer. |
Int32 | A signed 32-bit integer. |
Int64 | A signed 64-bit integer. |
Int8 | A signed 8-bit integer. |
StringAscii | An ASCII string. |
StringUtf16 | A UTF-16 string. |
StringUtf32 | A UTF-32 string. |
StringUtf8 | A UTF-8 string. |
TimeAttosecond | A time of day counted in attoseconds. |
TimeFemtosecond | A time of day counted in femtoseconds. |
TimeHour | A time of day counted in hours. |
TimeMicrosecond | A time of day counted in microseconds. |
TimeMillisecond | A time of day counted in milliseconds. |
TimeMinute | A time of day counted in minutes. |
TimeNanosecond | A time of day counted in nanoseconds. |
TimePicosecond | A time of day counted in picoseconds. |
TimeSecond | A time of day counted in seconds. |
UInt16 | An unsigned 16-bit integer. |
UInt32 | An unsigned 32-bit integer. |
UInt64 | An unsigned 64-bit integer. |
UInt8 | An unsigned 8-bit integer. |