Package io.deephaven.enterprise.database
Class TableOptions
java.lang.Object
io.deephaven.enterprise.database.TableOptions
A collection of options that control the construction of a 
live table- 
Nested Class SummaryNested Classes
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic TableOptionsforBlink()Get the defaultTableOptionsfor a live blink table.static TableOptionsforLive()Get the defaultTableOptionsfor a live ticking table.static TableOptionsGet the defaultTableOptionsfor a static table.@Nullable StringThe name of the internal partition column in the fetched table.booleanisBlink()Get if the result table will be a Blink table.booleanGet if the result table will be refreshing.static TableOptions.BuilderCreate a newTableOptions.Builderfor setting options on a live ticking table.static TableOptions.BuilderCreate a newTableOptions.Builderfor setting options on a static table.
- 
Constructor Details- 
TableOptionspublic TableOptions()
 
- 
- 
Method Details- 
internalPartitionColumnThe name of the internal partition column in the fetched table.- Returns:
- The name, or null
- See Also:
 
- 
isBlink@Default public boolean isBlink()Get if the result table will be a Blink table.- Returns:
- True if the table is a blink table false otherwise.
 
- 
isRefreshing@Default public boolean isRefreshing()Get if the result table will be refreshing.- Returns:
- True if the table is refreshing.
 
- 
newLiveBuilderCreate a newTableOptions.Builderfor setting options on a live ticking table.- Returns:
- a new TableOptions.Builder
 
- 
newStaticBuilderCreate a newTableOptions.Builderfor setting options on a static table.- Returns:
- a new TableOptions.Builder
 
- 
forLiveGet the defaultTableOptionsfor a live ticking table.- Returns:
- the live options.
 
- 
forStaticGet the defaultTableOptionsfor a static table.- Returns:
- the static options.
 
- 
forBlinkGet the defaultTableOptionsfor a live blink table.- Returns:
- the blink options.
 
 
-