Schnittstelle ITableExaminer
- Alle bekannten Implementierungsklassen:
TableExaminer
public interface ITableExaminer
- Version:
- 2024-12-30
- Autor:
- Silvan Wyss
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungboolean
containsColumn
(ITable table, IColumn column) boolean
containsColumnThatIsBackReferencedByColumn
(ITable table, IColumn column) boolean
containsColumnThatReferencesBackColumn
(ITable table, IColumn column) boolean
containsColumnThatReferencesTable
(ITable table, ITable otherTable) boolean
containsColumnWithName
(ITable table, String name) boolean
isReferenced
(ITable table)
-
Methodendetails
-
containsColumn
- Parameter:
table
-column
-- Gibt zurück:
- true if the given table contains the given column, false otherwise.
-
containsColumnThatIsBackReferencedByColumn
- Parameter:
table
-column
-- Gibt zurück:
- true if the given table contains a
IColumn
that is back referenced by the given column, false otherwise.
-
containsColumnThatReferencesBackColumn
- Parameter:
table
-column
-- Gibt zurück:
- true if the given table contains a
IColumn
that referenced back the given column, false otherwise.
-
containsColumnThatReferencesTable
- Parameter:
table
-otherTable
-- Gibt zurück:
- true if the given table contains a
IColumn
that references the given otherTable, false otherwise.
-
containsColumnWithName
- Parameter:
table
-name
-- Gibt zurück:
- if the given table contains a
IColumn
with the given name, false otherwise.
-
isReferenced
- Parameter:
table
-- Gibt zurück:
- true if the given table is referenced, false otherwise.
-