Interface QueryGenerationColumn.Builder

    • Method Detail

      • name

        QueryGenerationColumn.Builder name​(String name)

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

        Parameters:
        name - The name of the column 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

        QueryGenerationColumn.Builder description​(String description)

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

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

        QueryGenerationColumn.Builder inclusion​(String inclusion)

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

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

        QueryGenerationColumn.Builder inclusion​(IncludeExclude inclusion)

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

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