Class TableAlias

    • Constructor Detail

      • TableAlias

        public TableAlias​(java.lang.String table,
                          java.lang.String name)
        Method constructing a table from a string to be aliased by the second passed string.
        Parameters:
        table - String to construct table with.
        name - String used to alias the table.
      • TableAlias

        public TableAlias​(Table table,
                          java.lang.String name)
        Method constructing a new TableAlias by taking a pre-constructed table and a string to be used as alias for the given table.
        Parameters:
        table - Table to be aliased.
        name - String to be used to alias table.
    • Method Detail

      • getTable

        public Table getTable()
        Get method returning table currently set.
        Returns:
        Table currently set.
      • accept

        public void accept​(Visitor visitor)
        Accept method to handle incoming visitors.
        Parameters:
        visitor - Visitor to be handled.