The Data Table Entity
catalytic.sdk.entities.DataTable
The Data Table entity contains metadata about Data Tables stored in the Catalytic platform. Data Tables can be created within Workflows, or directly via uploading a CSV or Excel-formatted spreadsheet file.
Common Methods
These are the most commonly used methods of a DataTable
.
Name | Return Type | Description |
---|---|---|
getId | UUID | The unique ID of the Data Table |
getNname | String | The name of the Data Table |
getColumns | List< DataTableColumn> | The Columns in the Data Table |
getType | String | Imported , Master , Application , Instance or Batch |
getVisibility | String | Open or Restricted |
Data Table Column
catalytic.sdk.entities.DataTableColumn
Common Methods
These are the most commonly used methods of a DataTable
.
Name | Return Type | Description |
---|---|---|
getName | String | The name of the Column |
getType | String | The type of data held in the column. See Instances |
getRestrictions | FieldRestrictions | May include a set of string Choices for SingleChoice and MultipleChoice fields. |
Updated almost 3 years ago