Interface QueryGenerationTable.Builder

    • Method Detail

      • name

        QueryGenerationTable.Builder name​(String name)

        The name of the table for which the other fields in this object apply.

        Parameters:
        name - The name of the table for which the other fields in this object apply.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • description

        QueryGenerationTable.Builder description​(String description)

        A description of the table that helps the query engine understand the contents of the table.

        Parameters:
        description - A description of the table that helps the query engine understand the contents of the table.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • inclusion

        QueryGenerationTable.Builder inclusion​(String inclusion)

        Specifies whether to include or exclude the table during query generation. If you specify EXCLUDE, the table will be ignored. If you specify INCLUDE, all other tables will be ignored.

        Parameters:
        inclusion - Specifies whether to include or exclude the table during query generation. If you specify EXCLUDE, the table will be ignored. If you specify INCLUDE, all other tables will be ignored.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        IncludeExclude, IncludeExclude
      • inclusion

        QueryGenerationTable.Builder inclusion​(IncludeExclude inclusion)

        Specifies whether to include or exclude the table during query generation. If you specify EXCLUDE, the table will be ignored. If you specify INCLUDE, all other tables will be ignored.

        Parameters:
        inclusion - Specifies whether to include or exclude the table during query generation. If you specify EXCLUDE, the table will be ignored. If you specify INCLUDE, all other tables will be ignored.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        IncludeExclude, IncludeExclude
      • columns

        QueryGenerationTable.Builder columns​(Collection<QueryGenerationColumn> columns)

        An array of objects, each of which defines information about a column in the table.

        Parameters:
        columns - An array of objects, each of which defines information about a column in the table.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • columns

        QueryGenerationTable.Builder columns​(QueryGenerationColumn... columns)

        An array of objects, each of which defines information about a column in the table.

        Parameters:
        columns - An array of objects, each of which defines information about a column in the table.
        Returns:
        Returns a reference to this object so that method calls can be chained together.