Interface IDatabaseViewSearcherForDatabaseView
- All Known Implementing Classes:
DatabaseViewSearcherForDatabaseView
public interface IDatabaseViewSearcherForDatabaseView
- Author:
- Silvan Wyss
-
Method Summary
Modifier and TypeMethodDescriptiongetColumnViewByTableNameAndColumnId(String tableName, String columnId) getColumnViewByTableNameAndColumnName(String tableName, String columnName) getTableViewByTableId(String tableId) getTableViewByTableName(String tableName)
-
Method Details
-
getColumnViewByTableNameAndColumnId
- Parameters:
tableName-columnId-- Returns:
- the
ColumnViewDtowith the given columnId from the table with the given tableName from the database view of the currentIDatabaseViewSearcherForDatabaseView. - Throws:
RuntimeException- if the database view of the currentIDatabaseViewSearcherForDatabaseViewdoes not contain a table with the given tableName, that contains aColumnViewDtowith the given columnId.
-
getColumnViewByTableNameAndColumnName
- Parameters:
tableName-columnName-- Returns:
- the
ColumnViewDtowith the given columnName from the table with the given tableName from the database view of the currentIDatabaseViewSearcherForDatabaseView. - Throws:
RuntimeException- if the database view of the currentIDatabaseViewSearcherForDatabaseViewdoes not contain a table with the given tableName, that contains aColumnViewDtowith the given columnName.
-
getTableViewByTableId
- Parameters:
tableId-- Returns:
- the
TableViewDtowith the given tableId from database view of the currentIDatabaseViewSearcherForDatabaseView. - Throws:
RuntimeException- if the database view of the currentIDatabaseViewSearcherForDatabaseViewdoes not contain aTableViewDtowith the given tableId.
-
getTableViewByTableName
- Parameters:
tableName-- Returns:
- the
TableViewDtowith the given tableName from the database view of the currentIDatabaseViewSearcherForDatabaseView. - Throws:
RuntimeException- if the database view of the currentIDatabaseViewSearcherForDatabaseViewdoes not contain aTableViewDtowith the given tableName.
-