Skip to content

Commit

Permalink
Add column types
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Westphal committed Jun 21, 2024
1 parent 3654153 commit 97f0ecd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions semanticlabeling/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,18 @@
class ColumnType(Enum):
Str = 'string'
AtomicToken = 'atomic token' # must not contain white spaces
Categories = 'categories'
Int = 'integer'
Real = 'real'
Float = 'float'
Boolean = 'boolean'
Byte = 'byte'
Date = 'date'
DateTime = 'date time'
DateTimeStamp = 'date time stamp'
Text = 'text'
Time = 'time'
ID = 'ID'
Lat = 'lat'
Lon = 'lon'
Unknown = 'unknown'

0 comments on commit 97f0ecd

Please sign in to comment.