Class Selectables

java.lang.Object
io.deephaven.plot.filters.Selectables

public class Selectables extends Object
Method for creating SelectableDataSets.
  • Method Details

    • oneClick

      public static SelectableDataSetOneClick oneClick(io.deephaven.engine.table.Table t, String... byColumns)
      Creates a SelectableDataSetOneClick with the specified columns.
      Parameters:
      t - table
      byColumns - selected columns
      Returns:
      SelectableDataSetOneClick with the specified table and columns
    • oneClick

      public static SelectableDataSetOneClick oneClick(io.deephaven.engine.table.PartitionedTable pTable)
      Creates a SelectableDataSetOneClick with the specified columns.
      Parameters:
      pTable - PartitionedTable
      Returns:
      SelectableDataSetOneClick with the specified partitioned table and columns
    • oneClick

      public static SelectableDataSetOneClick oneClick(io.deephaven.engine.table.Table t, boolean requireAllFiltersToDisplay, String... byColumns)
      Creates a SelectableDataSetOneClick with the specified columns.
      Parameters:
      t - table
      byColumns - selected columns
      requireAllFiltersToDisplay - false to display data when not all oneclicks are selected; true to only display data when appropriate oneclicks are selected
      Returns:
      SelectableDataSetOneClick with the specified table and columns
    • oneClick

      public static SelectableDataSetOneClick oneClick(io.deephaven.engine.table.PartitionedTable pTable, boolean requireAllFiltersToDisplay)
      Creates a SelectableDataSetOneClick with the specified columns.
      Parameters:
      pTable - PartitionedTable
      requireAllFiltersToDisplay - false to display data when not all oneclicks are selected; true to only display data when appropriate oneclicks are selected
      Returns:
      SelectableDataSetOneClick with the specified partitioned table and columns