Interface ITableInfoSearcher

All Known Implementing Classes:
TableInfoSearcher

public interface ITableInfoSearcher
Author:
Silvan Wyss
  • Method Details

    • getColumnViewByColumnId

      ColumnInfoDto getColumnViewByColumnId(TableInfoDto tableInfoDto, String columnId)
      Parameters:
      tableInfoDto -
      columnId -
      Returns:
      the column view of the column with the given columnId from the given tableViewDto.
      Throws:
      RuntimeException - if the given tableViewDto does not contain a column view of a column with the given columnId.
    • getColumnViewByColumnName

      ColumnInfoDto getColumnViewByColumnName(TableInfoDto tableInfoDto, String columnName)
      Parameters:
      tableInfoDto -
      columnName -
      Returns:
      the column view of the column with the given columnName from the given tableViewDto.
      Throws:
      RuntimeException - if the given tableViewDto does not contain a column view of a column with the given columnName.