ColumnTypeName enum
Logical column type names recognized by the DSL.
Values
- bigInteger → const ColumnTypeName
-
Large integer.
- binary → const ColumnTypeName
-
Raw binary blobs.
- boolean → const ColumnTypeName
-
Boolean flag.
- date → const ColumnTypeName
-
Date without time component.
- time → const ColumnTypeName
-
Time without date component.
- dateTime → const ColumnTypeName
-
Combined date and time value.
- decimal → const ColumnTypeName
-
Arbitrary precision decimal.
- doublePrecision → const ColumnTypeName
-
Double precision floating point.
- float → const ColumnTypeName
-
Single precision floating point.
- integer → const ColumnTypeName
-
Standard integer type.
- smallInteger → const ColumnTypeName
-
Smaller integer range.
- mediumInteger → const ColumnTypeName
-
Medium-size integer.
- tinyInteger → const ColumnTypeName
-
Tiny integer range.
- json → const ColumnTypeName
-
JSON column without binary optimization.
- jsonb → const ColumnTypeName
-
Binary-optimized JSON column.
- string → const ColumnTypeName
-
Variable-length string.
- text → const ColumnTypeName
-
Text column for large strings.
- longText → const ColumnTypeName
-
Extra-long text column.
- enumType → const ColumnTypeName
-
Enum column backed by a set of strings.
- setType → const ColumnTypeName
-
Set column storing multiple string values.
- uuid → const ColumnTypeName
-
UUID column.
- geometry → const ColumnTypeName
-
Geometry data type.
- geography → const ColumnTypeName
-
Geography data type.
- vector → const ColumnTypeName
-
Vector column for math/ML use cases.
- custom → const ColumnTypeName
-
Custom type represented by a driver-specific name.
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
ColumnTypeName> - A constant List of the values in this enum, in order of their declaration.