getDefinition
The getDefinition method returns the source table's TableDefinition.
Syntax
Parameters
This method takes no arguments.
Returns
The source table's TableDefinition.
Show your appreciation for Deephaven by starring us on GitHub.
table.getDefinition()
source = newTable(
stringCol("Title", "content"),
stringCol("ColumnName", "column_content"),
stringCol("AnotherColumn", "string"),
)
println source.getDefinition()