Interface ProfileConfiguration.Builder

  • Method Details

    • 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.
    • datasetStatisticsConfiguration

      default ProfileConfiguration.Builder datasetStatisticsConfiguration(Consumer<StatisticsConfiguration.Builder> 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.

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

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to datasetStatisticsConfiguration(StatisticsConfiguration).

      Parameters:
      datasetStatisticsConfiguration - a consumer that will call methods on StatisticsConfiguration.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • 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<ColumnSelector>).

      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:
    • 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<ColumnStatisticsConfiguration>).

      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:
    • 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.
    • entityDetectorConfiguration

      default ProfileConfiguration.Builder entityDetectorConfiguration(Consumer<EntityDetectorConfiguration.Builder> entityDetectorConfiguration)

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

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

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to entityDetectorConfiguration(EntityDetectorConfiguration).

      Parameters:
      entityDetectorConfiguration - a consumer that will call methods on EntityDetectorConfiguration.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: