Schnittstelle IDatabaseViewSearcher
- Alle bekannten Implementierungsklassen:
DatabaseViewSearcher
public interface IDatabaseViewSearcher
- Version:
- 2025-06-19
- Autor:
- Silvan Wyss
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibunggetColumnViewByTableNameAndColumnId(DatabaseViewDto databaseView, String tableName, String columnId) getColumnViewByTableNameAndColumnName(DatabaseViewDto databaseView, String tableName, String columnName) getTableViewByTableId(DatabaseViewDto databaseView, String tableId) getTableViewByTableName(DatabaseViewDto databaseView, String tableName)
-
Methodendetails
-
getColumnViewByTableNameAndColumnId
ColumnViewDto getColumnViewByTableNameAndColumnId(DatabaseViewDto databaseView, String tableName, String columnId) - Parameter:
databaseView-tableName-columnId-- Gibt zurück:
- the
ColumnViewDtowith 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 aColumnViewDtowith the given columnId.
-
getColumnViewByTableNameAndColumnName
ColumnViewDto getColumnViewByTableNameAndColumnName(DatabaseViewDto databaseView, String tableName, String columnName) - Parameter:
databaseView-tableName-columnName-- Gibt zurück:
- the
ColumnViewDtowith 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 aColumnViewDtowith the given columnName.
-
getTableViewByTableId
- Parameter:
databaseView-tableId-- Gibt zurück:
- the
TableViewDtowith the given tableId from the given databaseView. - Löst aus:
RuntimeException- if the given databaseView does not contain aTableViewDtowith the given tableId.
-
getTableViewByTableName
- Parameter:
databaseView-tableName-- Gibt zurück:
- the
TableViewDtowith the given tableName from the given databaseView. - Löst aus:
RuntimeException- if the given databaseView does not contain aTableViewDtowith the given tableName.
-