defaultRowsFilter static method

Set<int> defaultRowsFilter(
  1. PlutoGridStateManager stateManager
)

Implementation

static Set<int> defaultRowsFilter(PlutoGridStateManager stateManager) {
  return {
    stateManager.toggleFrozenColumn.hashCode,
    stateManager.insertColumns.hashCode,
    stateManager.removeColumns.hashCode,
    stateManager.moveColumn.hashCode,
    stateManager.hideColumn.hashCode,
    stateManager.toggleSortColumn.hashCode,
    stateManager.sortAscending.hashCode,
    stateManager.sortDescending.hashCode,
    stateManager.sortBySortIdx.hashCode,
    stateManager.setShowColumnGroups.hashCode,
    stateManager.setFilter.hashCode,
    stateManager.removeColumnsInColumnGroup.hashCode,
    stateManager.insertRows.hashCode,
    stateManager.prependRows.hashCode,
    stateManager.appendRows.hashCode,
    stateManager.removeCurrentRow.hashCode,
    stateManager.removeRows.hashCode,
    stateManager.removeAllRows.hashCode,
    stateManager.moveRowsByIndex.hashCode,
    stateManager.setRowGroup.hashCode,
    stateManager.toggleExpandedRowGroup.hashCode,
    stateManager.notifyChangedShowFrozenColumn.hashCode,
    stateManager.setPage.hashCode,
    stateManager.setPageSize.hashCode,
  };
}