Interface FromClauseAccess

    • Method Detail

      • findTableGroupOnCurrentFromClause

        TableGroup findTableGroupOnCurrentFromClause​(NavigablePath navigablePath)
        Find a TableGroup in this from clause without consulting parents by the NavigablePath it is registered under. Returns null if no TableGroup is registered under that NavigablePath
      • findTableGroup

        TableGroup findTableGroup​(NavigablePath navigablePath)
        Find a TableGroup by the NavigablePath it is registered under, and if not found on the current from clause level, ask the parent. Returns null if no TableGroup is registered under that NavigablePath
      • findTableGroupForGetOrCreate

        default TableGroup findTableGroupForGetOrCreate​(NavigablePath navigablePath)
        Find the TableGroup by the NavigablePath for the purpose of creating a new TableGroup if none can be found. Returns null if no TableGroup or parent table group is registered under that NavigablePath
      • registerTableGroup

        void registerTableGroup​(NavigablePath navigablePath,
                                TableGroup tableGroup)
        Register a TableGroup under the given `navigablePath`. Logs a message if this registration over-writes an existing one.