Schnittstelle IDatabaseViewSearcher

Alle bekannten Implementierungsklassen:
DatabaseViewSearcher

public interface IDatabaseViewSearcher
Version:
2025-06-19
Autor:
Silvan Wyss
  • Methodendetails

    • getColumnViewByTableNameAndColumnId

      ColumnViewDto getColumnViewByTableNameAndColumnId(DatabaseViewDto databaseView, String tableName, String columnId)
      Parameter:
      databaseView -
      tableName -
      columnId -
      Gibt zurück:
      the ColumnViewDto with the given columnId from the table with the given tableName from the given databaseView.
      Löst aus:
      RuntimeException - if the given databaseView does not contain a table with the given tableName, that contains a ColumnViewDto with the given columnId.
    • getColumnViewByTableNameAndColumnName

      ColumnViewDto getColumnViewByTableNameAndColumnName(DatabaseViewDto databaseView, String tableName, String columnName)
      Parameter:
      databaseView -
      tableName -
      columnName -
      Gibt zurück:
      the ColumnViewDto with the given columnName from the table with the given tableName from the given databaseView.
      Löst aus:
      RuntimeException - if the given databaseView does not contain a table with the given tableName, that contains a ColumnViewDto with the given columnName.
    • getTableViewByTableId

      TableViewDto getTableViewByTableId(DatabaseViewDto databaseView, String tableId)
      Parameter:
      databaseView -
      tableId -
      Gibt zurück:
      the TableViewDto with the given tableId from the given databaseView.
      Löst aus:
      RuntimeException - if the given databaseView does not contain a TableViewDto with the given tableId.
    • getTableViewByTableName

      TableViewDto getTableViewByTableName(DatabaseViewDto databaseView, String tableName)
      Parameter:
      databaseView -
      tableName -
      Gibt zurück:
      the TableViewDto with the given tableName from the given databaseView.
      Löst aus:
      RuntimeException - if the given databaseView does not contain a TableViewDto with the given tableName.