Package io.deephaven.enterprise.database
Interface TableOptions.Builder
- Enclosing class:
- TableOptions
public static interface TableOptions.Builder
A Builder object for
TableOptions
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Create aTableOptions
from this builder state.internalPartitionColumn
(@NotNull String columnName) Set the name of the internal partition column.isBlink
(boolean isBlink) Set if the result table will be a blink table.
-
Method Details
-
internalPartitionColumn
Set the name of the internal partition column. The default isnull
, not included.- Parameters:
columnName
- the name of the internal partition column- Returns:
- this builder
-
isBlink
Set if the result table will be a blink table. The default is false.- Parameters:
isBlink
- true of the table will be a blink table.- Returns:
- this builder
-
build
TableOptions build()Create aTableOptions
from this builder state.- Returns:
- a
TableOptions
-