Schnittstelle IDatabaseViewSearcherForDatabaseView
- Alle bekannten Implementierungsklassen:
DatabaseViewSearcherForDatabaseView
public interface IDatabaseViewSearcherForDatabaseView
- Version:
- 2025-06-27
- Autor:
- Silvan Wyss
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibunggetColumnViewByTableNameAndColumnId(String tableName, String columnId) getColumnViewByTableNameAndColumnName(String tableName, String columnName) getTableViewByTableId(String tableId) getTableViewByTableName(String tableName)
-
Methodendetails
-
getColumnViewByTableNameAndColumnId
- Parameter:
tableName-columnId-- Gibt zurück:
- the
ColumnViewDtowith the given columnId from the table with the given tableName from the database view of the currentIDatabaseViewSearcherForDatabaseView. - Löst aus:
RuntimeException- if the database view of the currentIDatabaseViewSearcherForDatabaseViewdoes not contain a table with the given tableName, that contains aColumnViewDtowith the given columnId.
-
getColumnViewByTableNameAndColumnName
- Parameter:
tableName-columnName-- Gibt zurück:
- the
ColumnViewDtowith the given columnName from the table with the given tableName from the database view of the currentIDatabaseViewSearcherForDatabaseView. - Löst aus:
RuntimeException- if the database view of the currentIDatabaseViewSearcherForDatabaseViewdoes not contain a table with the given tableName, that contains aColumnViewDtowith the given columnName.
-
getTableViewByTableId
- Parameter:
tableId-- Gibt zurück:
- the
TableViewDtowith the given tableId from database view of the currentIDatabaseViewSearcherForDatabaseView. - Löst aus:
RuntimeException- if the database view of the currentIDatabaseViewSearcherForDatabaseViewdoes not contain aTableViewDtowith the given tableId.
-
getTableViewByTableName
- Parameter:
tableName-- Gibt zurück:
- the
TableViewDtowith the given tableName from the database view of the currentIDatabaseViewSearcherForDatabaseView. - Löst aus:
RuntimeException- if the database view of the currentIDatabaseViewSearcherForDatabaseViewdoes not contain aTableViewDtowith the given tableName.
-