Interface ProfileConfiguration.Builder

    • Method Detail

      • datasetStatisticsConfiguration

        ProfileConfiguration.Builder datasetStatisticsConfiguration​(StatisticsConfiguration datasetStatisticsConfiguration)

        Configuration for inter-column evaluations. Configuration can be used to select evaluations and override parameters of evaluations. When configuration is undefined, the profile job will run all supported inter-column evaluations.

        Parameters:
        datasetStatisticsConfiguration - Configuration for inter-column evaluations. Configuration can be used to select evaluations and override parameters of evaluations. When configuration is undefined, the profile job will run all supported inter-column evaluations.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • profileColumns

        ProfileConfiguration.Builder profileColumns​(Collection<ColumnSelector> profileColumns)

        List of column selectors. ProfileColumns can be used to select columns from the dataset. When ProfileColumns is undefined, the profile job will profile all supported columns.

        Parameters:
        profileColumns - List of column selectors. ProfileColumns can be used to select columns from the dataset. When ProfileColumns is undefined, the profile job will profile all supported columns.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • profileColumns

        ProfileConfiguration.Builder profileColumns​(ColumnSelector... profileColumns)

        List of column selectors. ProfileColumns can be used to select columns from the dataset. When ProfileColumns is undefined, the profile job will profile all supported columns.

        Parameters:
        profileColumns - List of column selectors. ProfileColumns can be used to select columns from the dataset. When ProfileColumns is undefined, the profile job will profile all supported columns.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • profileColumns

        ProfileConfiguration.Builder profileColumns​(Consumer<ColumnSelector.Builder>... profileColumns)

        List of column selectors. ProfileColumns can be used to select columns from the dataset. When ProfileColumns is undefined, the profile job will profile all supported columns.

        This is a convenience method that creates an instance of the ColumnSelector.Builder avoiding the need to create one manually via ColumnSelector.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #profileColumns(List).

        Parameters:
        profileColumns - a consumer that will call methods on ColumnSelector.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #profileColumns(java.util.Collection)
      • columnStatisticsConfigurations

        ProfileConfiguration.Builder columnStatisticsConfigurations​(Collection<ColumnStatisticsConfiguration> columnStatisticsConfigurations)

        List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.

        Parameters:
        columnStatisticsConfigurations - List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • columnStatisticsConfigurations

        ProfileConfiguration.Builder columnStatisticsConfigurations​(ColumnStatisticsConfiguration... columnStatisticsConfigurations)

        List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.

        Parameters:
        columnStatisticsConfigurations - List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • columnStatisticsConfigurations

        ProfileConfiguration.Builder columnStatisticsConfigurations​(Consumer<ColumnStatisticsConfiguration.Builder>... columnStatisticsConfigurations)

        List of configurations for column evaluations. ColumnStatisticsConfigurations are used to select evaluations and override parameters of evaluations for particular columns. When ColumnStatisticsConfigurations is undefined, the profile job will profile all supported columns and run all supported evaluations.

        This is a convenience method that creates an instance of the ColumnStatisticsConfiguration.Builder avoiding the need to create one manually via ColumnStatisticsConfiguration.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #columnStatisticsConfigurations(List).

        Parameters:
        columnStatisticsConfigurations - a consumer that will call methods on ColumnStatisticsConfiguration.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #columnStatisticsConfigurations(java.util.Collection)
      • entityDetectorConfiguration

        ProfileConfiguration.Builder entityDetectorConfiguration​(EntityDetectorConfiguration entityDetectorConfiguration)

        Configuration of entity detection for a profile job. When undefined, entity detection is disabled.

        Parameters:
        entityDetectorConfiguration - Configuration of entity detection for a profile job. When undefined, entity detection is disabled.
        Returns:
        Returns a reference to this object so that method calls can be chained together.