Package io.deephaven.plot.util.tables
Class PartitionedTableHandle
java.lang.Object
io.deephaven.plot.util.tables.PartitionedTableHandle
- All Implemented Interfaces:
PlotExceptionCause
,Serializable
- Direct Known Subclasses:
PartitionedTableBackedPartitionedTableHandle
,TableBackedPartitionedTableHandle
public abstract class PartitionedTableHandle
extends Object
implements Serializable, PlotExceptionCause
Holds a
PartitionedTable
.- See Also:
-
Constructor Summary
ModifierConstructorDescriptionprotected
PartitionedTableHandle
(Collection<String> columns, String[] keyColumns, PlotInfo plotInfo) -
Method Summary
Modifier and TypeMethodDescriptionvoid
void
applyFunction
(Function<Table, Table> function) Get the set of columns to .view() when the table is fetched.String[]
abstract TableDefinition
int
id()
boolean
void
setKeyColumnsOrdered
(String[] orderedKeyColumns) void
setOneClickMap
(boolean isOneClick) void
setPartitionedTable
(PartitionedTable partitionedTable)
-
Constructor Details
-
PartitionedTableHandle
protected PartitionedTableHandle(Collection<String> columns, String[] keyColumns, PlotInfo plotInfo)
-
-
Method Details
-
getTableDefinition
-
getPartitionedTable
-
setPartitionedTable
-
setKeyColumnsOrdered
-
id
public int id() -
addColumn
-
getColumns
-
getFetchViewColumns
Get the set of columns to .view() when the table is fetched. Typically this is identical togetColumns()
however, there are situations where the transformations applied to a PartitionedTable result in columns that are not present in the base PartitionedTable. (for example catHistPlot).- Returns:
- The columms to apply via view on fetch
-
getKeyColumns
-
getKeyColumnsOrdered
-
getPlotInfo
- Specified by:
getPlotInfo
in interfacePlotExceptionCause
-
setOneClickMap
public void setOneClickMap(boolean isOneClick) -
isOneClickMap
public boolean isOneClickMap() -
applyFunction
-